我需要创建自己的 JBoss 配置。它将稍微改变“网络”配置。是否有任何文档或教程 - 怎么做?
我在新配置中需要什么:
1.删除 JBoss 应用程序服务器中包含的 JSF 实现
如何做 - http://community.jboss.org/wiki/RemoveJSF
2.增加在自定义“web”配置中使用 twiddle 的可能性。
怎么做 -修改 jboss-service.xml。
替换属性
<attribute name="Port">-1</attribute>
具有以下属性
<attribute name="Port">
<value-factory bean="ServiceBindingManager" method="getIntBinding">
<parameter>jboss:service=Naming</parameter>
<parameter>Port</parameter>
</value-factory>
</attribute>
对于 mbean
<mbean code="org.jboss.naming.NamingService"
name="jboss:service=Naming"
xmbean-dd="resource:xmdesc/NamingService-xmbean.xml">
3.删除server/web/deploy/hsqldb-ds.xml
4. ...进行中...
PS。
有谁知道 - 为什么 web 配置禁用了 twiddle 的支持?