- 浏览: 547185 次
- 性别:
- 来自: 广州
-
最新评论
-
mikey_5:
非常感谢楼主的分享,<parameter propert ...
Check the output parameters (register output parameters failed) IN Ibatis -
影子_890314:
我现在也有这个错误,求解!
Check the output parameters (register output parameters failed) IN Ibatis -
358135071:
学习了,感谢分享!
使用hibernate 代替 mysql 中 limit 進行分頁 -
wjpiao:
你下面的“正确的映射”里面不是还是有number类型吗?
Check the output parameters (register output parameters failed) IN Ibatis -
zh_s_z:
很有用!弄一份吧!
Oracle数据库分区表操作方法
文章列表
net address(多种语言在同一个表格中,容易排除遗漏属性字段):
die URL:
http://www.guh-software.de/eclipse/
http://www.guh-software.de/jinto.html
*.jsp page :
<%
Language: out.println(request.getHeader("ACCEPT-LANGUAGE"));
%>
在此想和大家分享一个不错的编写properties文件的Eclipse插件(plugin),有了它我们在编辑一些简体中文、繁体中文等Unicode文本时,就不必再使用native2ascii编码了。
您可以通过Eclipse中的软件升级(Software Update)安装此插件,步骤如下:
1、展开Eclipse的Help菜单,将鼠标移到Software Update子项,在出现的子菜单中点击Find and Install;
2、在Install/Update对话框中选择Search for new features to install,点击Next;
3、在Install对话框中 ...
${filecomment}
${package_declaration}
/**
* class description information
*
* @author ${user}
* @version ${date} ${time}
*/
${typecomment}
${type_declaration}
http://www.360doc.com/content/09/0310/20/12985_2770862.shtml
// http://code.google.com/p/google-api-translate-java/
import com.google.api.translate.Language;
import com.google.api.translate.Translate;
public class Main {
public static void main(String[] args) throws Exception {
// Set the HTTP referrer to your website address.
Translat ...
Pattern类:
例子:
Pattern pattern = Pattern.compile("[,\\s]+");
String[] result = pattern.split("one two three,four,five, six");
for(int i = 0; i<result.length; i++){
System.out.println(result[i]);
}
输出结果是:
one
two
t ...
back windows_system mysql database:
------------------use help --------------------------
mysql -? | mysql --help
mysqldump -? | mysql --help
------------------dump sql script -------------------
mysqldump -u root -p mydb --default-character-set=utf8 > mydb.sql
mysqldump -u root -p mydb & ...
EHCache
是一个纯java
的在进程中的缓存,
它具有以下特性:
快速,
简单,
为Hibernate2.1
充当可插入的缓存,
最小的依赖性,
全面的文档和测试.
官方网站http://ehcache.sourceforge.net/
毫 无疑问,
几乎所有的网站的首页都是访问率最高的,
而首页上的数据来源又是非常广泛的,
大多数来自不同的对象,
而且有可能来自不同的db ,
所以给首页做缓存是一个不错的主意,
那么主页的缓存策略是什么样子的呢,
我认为应该是某个固定时间之内不变的,
比如说2
分钟更新一次.
那么这个缓存应该做 ...
hibernate Annotation不用SchemaExport也可以生成表呀,只要在sessionFactory配置的过程中
<property name="hibernateProperties">
<props>
<prop
key="hibernate.hbm2ddl.auto">update</prop>
</props>
</property>
其中update表示加载hibernate自动更新数据库结构,你也可以用create, ...
displaytag :jsp paging tag
http://displaytag.sourceforge.net/1.2/download.html
1.*.hbm.xml
=================================
<property name="senddate" type="java.util.Date">
<column name="SENDDATE" />
</property>
2.*.java
private Date senddate;
private Date senddateEnd;
3. sette ...
source address: http://bbs.ibeifeng.com/simple/index.php?t16636.html
如何在spring框架中解决多数据源的问题[转贴]
在我们的项目中遇到这样一个问题:我们的项目需要连接多个数据库,而且不同的客户在每次访
问中根据需要会去访问不同 ...
@Override
public FriendBean findFriendBean(final FriendBean friendBean) {
// return (FriendBean) this.getHibernateTemplate().execute(
// new HibernateCallback() {
// public Object doInHibernate(Session session)
// throws ...