
SSH
harveyzeng
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Hibernate中get和load方法的区别
原创 2012-01-08 12:19:50 · 84 阅读 · 0 评论 -
Hibernate Session的flush,clear,close[转]
原创 2012-06-27 16:07:58 · 115 阅读 · 0 评论 -
Hibernate all-delete-orphan[转]
原创 2012-06-27 16:10:09 · 123 阅读 · 0 评论 -
Hibernate inverse, cascade, update, insert, fetch用法
// ... } public class Order { private User user; // .. } 对应的 mapping files: Order.hbm.xml <hibernate-mapping package="org.pprun.hjpetstore.domain"> <class name="Order" table="Or原创 2012-06-27 16:16:46 · 133 阅读 · 0 评论 -
Hibernate的merge方法
o the persistent object with the same identifier. If there is no persistent instance currently associated with the session, it will be loaded. Return the persistent instance. If the given instance is unsaved, save a copy of and return it as a newly persist原创 2012-08-07 16:54:30 · 111 阅读 · 0 评论 -
Spring 定时任务及cron表达式
work.scheduling.annotation.EnableScheduling; import org.springframework.stereotype.Component; @Component @EnableScheduling public class ScheduleTest { @Scheduled(cron = "0 0 3 * * ?") public void demoSchedule() { Sys原创 2017-03-16 10:22:10 · 295 阅读 · 0 评论