JAVA
codingmu
这个作者很懒,什么都没留下…
展开
-
运行jar文件classpath参数无效的问题
可以在MANIFEST.MF中加入 Class-Path: xxxx.jar 其中xxxx.jar要与要运行的jar放在同一个目录。2008-03-26 15:48:26 · 823 阅读 · 0 评论 -
hibernate的属性延迟加载
annotation方式配置hibernate时默认延迟加载对象,这在需要捕捉抛出的异常时会遇到问题,例如://... Integer id=5; try { User user = userManager.get(id); return user.getId(); } catch (ObjectNotFoundException e) { //... } 在id为5的用户不存在时应...2008-03-27 15:35:37 · 149 阅读 · 0 评论 -
hibernate多个many-to-many映射时,报错“未明确定义的列”
select * from ( select this_.id as id0_2_, this_.ABSTRACT as ABSTRACT0_2_, this_.author as author0_2_, this_.CREATE_TIME as CREATE4_0_2_, this_.PUB_TIME as PUB5_0_2_, this_.source as source0_2_, this_...2008-03-31 14:56:59 · 139 阅读 · 0 评论 -
hibernate的interceptors和events
可以用来记录数据库操作日志, 更新某些通用字段(如操作员、更新时间等。 [list] [*][b]Interceptors[/b] 通过继承EmptyInterceptor,然后根据需要拦截的操作覆盖相应方法。 然后这样调用即可: [code="java"]// Session-scoped Session session = sf.openSession( new AuditI...2008-05-25 22:52:31 · 147 阅读 · 0 评论