如果可能,我无法找到信息,如果可能,那么如何将配置的执行器公开为JNDI资源。
这是standalone.xml
<subsystem xmlns="urn:jboss:domain:threads:1.1">
<thread-factory name="spring-async-factory" group-name="spring-thread-pool" thread-name-pattern="spring-async-%t" priority="1"/>
<blocking-bounded-queue-thread-pool name="spring-async-tp">
<core-threads count="5"/>
<queue-length count="100"/>
<max-threads count="10"/>
<keepalive-time time="20" unit="seconds"/>
<thread-factory name="spring-async-factory"/>
</blocking-bounded-queue-thread-pool>
</subsystem>
我已尝试使用java:global/threads/spring-async-tp
,java:comp/threads/spring-async-tp
进行访问,但未找到。所以,如果可能,我怎样才能通过JNDI找到它?
答案 0 :(得分:0)
{@ 1}}子系统已弃用,已在JBoss EAP 7.0中删除。也没有办法通过JNDI公开工厂。子系统的目的是成为其他子系统指向线程工厂的参考点。这些工厂从未打算用于部署。