我目前正在尝试将我的Web应用程序从jboss 5.1升级到jboss 7.1.1.Final
在我的jboss.xml中,我已经配置了一些自定义ejb超时,如下所示:
<session>
<ejb-name>MSServiceEJB</ejb-name>
<jndi-name>ejb/MSServiceEJB</jndi-name>
<local-jndi-name>ejb/LocalMSServiceEJB</local-jndi-name>
<method-attributes>
<method>
<method-name>*</method-name>
<transaction-timeout>3600</transaction-timeout>
</method>
</method-attributes>
</session>
Run Code Online (Sandbox Code Playgroud)
jboss 7忽略了jboss.xml,在哪里可以指定我的ejb 2.1事务超时?