在tomcat服務器上,我需要通過從Context.xml/Server.xml/Web.xml的彈出應用程序的jndi值來填充單身字符串列表。我發現沒有標籤攜帶列表參數不是環境/資源/參數。如何 - 從上下文填充單身字符串列表
我找到了一個解決
<context-param>
<param-name>SystemVariables</param-name>
<param-value>ex1.com,ex2.com,ex3.com</param-value>
</context-param>
從哪裏撿的價值後,我不得不拆分然後填充列表。
但是以前我們使用的樹脂,我們把JNDI像下面
<resource jndi-name="SystemVariables">
<type>com.example.SystemVariables</type>
<init>
<VarDescList>ex1.com</VarDescList>
<VarDescList>ex2.com</VarDescList>
<VarDescList>ex3.com</VarDescList>
</init>
</resource>
我們如何讓它在Tomcat的工作嗎?