摘要: 1、问题:如何在spring和hibernate整合中,有个特殊需要,就是不用spring的AOP来切入事务,而是手动写事务。 这个时候如果用getCurrentSession,就会报“Could not obtain transaction-synchronized Session for cur 阅读全文
posted @ 2021-02-23 08:56 信铁寒胜 阅读(495) 评论(0) 推荐(0) 编辑
摘要: 1、openSession必须关闭,currentSession在事务结束后自动关闭 2、openSession没有和当前线程绑定,currentSession和当前线程绑定 阅读全文
posted @ 2021-02-23 08:51 信铁寒胜 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 能创建对象,只是这个类不能继承并且别的类不能访问 阅读全文
posted @ 2021-02-22 18:50 信铁寒胜 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 在spring配置中,加入下面一个配置 <aop:aspectj-autoproxy proxy-target-class="true"/> 阅读全文
posted @ 2021-02-22 17:26 信铁寒胜 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 在eclipse中,使用svn从恢复到某个版本的时候会报错: org.apache.subversion.javahl.ClientException: Working copy and merge source not ready for reintegrationsvn: Cannot reve 阅读全文
posted @ 2021-02-21 20:25 信铁寒胜 阅读(352) 评论(0) 推荐(0) 编辑
摘要: ctrrl+shift+p 阅读全文
posted @ 2021-02-04 17:07 信铁寒胜 阅读(78) 评论(0) 推荐(0) 编辑
摘要: public class StringIndexOfTest { public static void main(String[] args) { String a = "10"; String b = "A10"; String c = "10A"; int index = a.indexOf(" 阅读全文
posted @ 2021-02-04 10:08 信铁寒胜 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 一、设置Eclipse关联JDK源码 1.打开Eclipse——>Windows——>Preferences 2. 在弹出的Preferences对话框中,Java——>Installed JRES——>选中jre(根据自己的安装确定)——>Edit 3. 在弹出的 Edit JRE对话框中,选中你 阅读全文
posted @ 2021-02-03 13:36 信铁寒胜 阅读(479) 评论(0) 推荐(0) 编辑
摘要: public class MutilHeadTable extends JTable { public MutilHeadTable(TableModel tm) { super(tm); init(); } private void init(){ //为每个列添加自定义的RENDER.这个Api 阅读全文
posted @ 2021-02-02 21:08 信铁寒胜 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-02-02 10:14 信铁寒胜 阅读(49) 评论(0) 推荐(0) 编辑