Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目前我的 jboss-service.xml 文件指向我硬盘上的 context-bindings.xml 文件。我们有一个 db 结构,它在数据库中保存上下文绑定和引用地址。我如何告诉 Jboss 指向数据库而不是我硬盘上的 context-bindings.xml 文件?
找到了。答案是设置 DataSource 属性而不是 FileName 属性
所以,而不是,
<attribute name="FileName">C:\context-bindings.xml</attribute>
而是使用,
<attribute name="DataSource">java:txLifeDS</attribute>