- 浏览: 83175 次
- 性别:
- 来自: 北京
最新评论
文章列表
BlazeDS
is the server-based Java remoting and web messaging technology that enables developers to easily connect to back-end distributed data and push data in real-time to Adobe® Flex™ and Adobe AIR™ applications for more responsive rich Internet application (RIA) experiences.
1 import maven project:
don't put your project source code under the path you plan to setup your project.
For example, if you want to import projects to the workspace path: d:/rds
please don't put the projects source code under d:/rds.
Or the import operation won't succeed.
2 delete projects ...
数据库突然出了问题,没办法只能重装,因为事先并不知道MySQL卸载是比较复杂的,结果重新安装的时候出现了问题:Could not start
the service MySQL. Error:0 在网上整了半天,终于搞定了,下面给出我的解决方案。
首先,在管理工具->服务里面将MySQL的服务给停止,然后打开cmd 进入你的MySQL bin目录下,例如我的是 C:\Program
Files\MySQL\MySQL Server 5.0\bin 然后使用如下命令mysqld-nt -remove
然后就会显示......success!
好了下面进入添加删 ...
可以将MySQL
bin
目录的路径加到Windows
系统PATH
环境变量
中:
·
右击Windows
桌面上的My
Computer
(我的计算机)
图标,选择Properties
(属
性)。
·
然后从出现的System ...
Version: 2.3.16
FreeMarker homepage:
http://freemarker.org/ (mirror: http://freemarker.sourceforge.net/)
FreeMaker Manual
http://freemarker.org/docs/index.html
Installing
Simply copy lib/freemarker.jar to a location where your Java application's ClassLoader will find it.
sqlmap automatically generated methods:
1 freemarker写模板
2 IBatis去除注释版 http://hugh-lin.iteye.com/
3 ibatis plugin for idea的生成好用(也是ibatis作者写的)
4 IDEA的ibatis插件很好用,参考http://docs.google.com/View?docid=dc73pj2h_6db54mm
5 基于Ibator的可视化配置工具,比较不错,把下载地址贴出来:http://coolsql.sourceforge.net/ ...
Linux / Unix
chmod command
Quick
links
About chmod
Syntax
Examples
Additional
information
Related
commands
Linux /
Unix main page
About chmod
Changes
the permission of a file.
Syntax
chmod
[OPTION]... MODE[,MODE]... FILE...
chmod [OPTION]... OCTAL-MODE
F ...
除了NOHUP, 还有screen
大家在起后台服务,或者长时间执行某个脚本的时候。是不是感觉,交互性很差,
有时,想把结果直接在终端上输出,又怕不小心关闭了终端导致进程退出? (有些sshd服务还会设置连接超时,自动退出 ...
oracle查看所有数据库表和导入*.sql
如果你想查数据库中所有的表的话,可以查询
SELECT
* FROM dba_tables
如果你想查询数据库中某个用户下的表的话,也可以登录这个用户,再查询:
SELECT *
FROM USER_TABLES
要想导入外部sql语句可以用命令
sql
>@e:\文件名.sql
如你想保存 select * from
tablename;语句的结果,可以在sql*plus 里面这样:
SPOOL c:\test.sql
//这是保存文件的位置
sele ...
ibatis
支持枚举类型
很多应用中,数据库表结构都会存在一些状态字段。在关系性数据库中,一般会用VARCHAR类型。使用ibatis的应用,传统做法,往往会使用
String的属性,与之对应。
例如一张member表,结构设计如下:
其中status为状态字段。
ibatis中,使用class MemberPO 与之mapping,设计往往如下:<!-- <br />
<br />
Code highlighting produced by Actipro CodeHighlighter (freeware)<br />
...
这几天在学习使用IBATIS突然要使用模糊查询,以及动态多个条件查询,按照自己的想法试了很久,都没解决这个问题.
首先是模糊查
询的问题,开始时我使用如下条件:select * from user where name like '%#value#%'.
可是怎么也不行,好像还报错 ...
1 resultMap写在SQL之前
2 重复使用sql的方法:
<sql id="sql_selectHoliday
">
select .....deleted from t_holiday
</sql>
<select id="selectHolidays" resultMap="holidayResultMap">
<include refid="sql_selectHoliday
"> ...
清空表中一列数据】
sql=" update 表 set 字段1=null"
找出所有数据为空的表
--
Created on 2010-3-15 by YUZQ
declare
--
Local variables here
i
integer
;
v_row_count
number
;
begin
泛型
支持创建可以按照类型进行参数化的类, 最大的功能为约束类型
foreach enumeration autoboxing
尖括号 类型形参,类型实参
泛型模式,推荐名称: EKTV 如: Collection<E>
Exception Key T(泛型) Vaule
泛型变量不能被静态变量和方法调用
泛型不是协变(多态的向上造型)的
如: List<Number> 不是 List<Integer>的父类型
解决方法是:使用类型通配符 ? List<?> 是任何泛型List的父类型
extends在泛型中表示限制 ...