- 浏览: 23150 次
- 性别:
- 来自: 北京
最新评论
-
冲杯茶喝:
明显是自己没理解pipeline的机制,bootstrap.s ...
netty-3.2.4.Final IDLE时无法发送链路检测报文的BUG -
pudong:
如果hibernate.current_session_con ...
SSH下Hibernate事务问题createCriteria is not valid without active transaction -
gaolinwu:
该问题,正解。这个问题一直缠绕了我一天的时间,我换了好多的接口 ...
SSH下Hibernate事务问题createCriteria is not valid without active transaction -
banchun:
你说的这个版本的bug,我没用那个补丁包的情况下,心跳包为什么 ...
netty-3.2.4.Final IDLE时无法发送链路检测报文的BUG -
爱老虎哟:
你好,请问你这个问题解决了没?怎么解决的?
SSH下Hibernate事务问题createCriteria is not valid without active transaction
文章列表
Extjs2 的时候,选中节点的方式是
var node = treePanel.getNodeById(id)
node.select();
在Extjs4中 treePanel没有这个方法,需要通过treestore来实现
var record = treeStore.getNodeById(id)
tree.getSelectionModel().select(record);
rubbitmq是用ERLang编写,所以安装rubbitMQ-Server前首先要安装ERLang
sudo yum install erlang
提示:
erlang-wx-R14B-03.3.el5.x86_64 from epel-erlang has depsolving problems
--> Missing Dependency: libwx_gtk2u_core-2.8.so.0(WXU_2.8)(64bit) is needed by package erlang-wx-R14B-03.3.el5.x86_64 (epel-erlang)
erlang-w ...
刚刚从mina中转向netty,链路检测报文怎么配都不好使,google之,终于在jboss的官网上发现已经报告此bug,并在netty4.0修复,给提供了patch包,修复patch之后,重新打包,发现还是没有解决。查看源码之后发现netty将超时的时间从options中设置。于是将超时时间重新设置:
ClientBootstrap bootstrap = new ClientBootstrap(new NioClientSocketChannelFactory(
Executors.newCachedTh ...
今天在ssh下又一次遇到事务问题,异常“ createCriteria is not valid without active transaction” 找来找去发现问题在于给hibernate配置中增加了如下属性导致:
<prop key="hibernate.current_session_context_class">thread</prop>
<prop key="hibernate.transaction.factory_class">org ...