我知道同一个EAR中的两个WAR是在wildfly 8+上共享HTTP会话。 这是两个WAR。一个WAR是另一个的副本。而且我在wildfly 8上部署失败了,但是在wildfly 9 CR1上取得了成功。 wildfly 9打印大量日志,如下面的
2015-05-18 15:56:03,114 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] 拒绝的bean名称'mvcUrlPathHelper':未标识任何URL路径 2015-05-18 15:56:03,114调试 [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] 拒绝bean名称 'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0': 没有确定URL路径2015-05-18 15:56:03,115 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] 拒绝bean名称 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#1': 没有确定URL路径2015-05-18 15:56:03,115 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] 拒绝bean名称 'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#1': 没有确定URL路径2015-05-18 15:56:03,115 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] 拒绝的bean名称'dataSource':未识别的URL路径2015-05-18 15:56:03,115调试 [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] 拒绝的bean名称'dataSourceForSMS':未识别任何URL路径 2015-05-18 15:56:03,115调试 [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] 拒绝的bean名称'txManager':未识别的URL路径2015-05-18 15:56:03,115调试 [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] 拒绝的bean名称'txManagerForSMS':未标识URL路径 2015-05-18 15:56:03,115调试 [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] 拒绝的bean名称'sqlSessionFactory':未识别任何URL路径 2015-05-18 15:56:03,116调试 [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] 拒绝的bean名称'sqlSessionFactoryForSMS':未识别任何URL路径 2015-05-18 15:56:03,116调试 [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] 拒绝的bean名称'sqlSession':没有识别出URL路径2015-05-18 15:56:03,116调试 [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] 拒绝的bean名称'sqlSessionForSMS':未标识任何URL路径 2015-05-18 15:56:03,116调试 [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] 拒绝的bean名称'txAdvice':未识别URL路径
........等等......
所以我想,wildfly已经在一个EAR中部署了两个WAR作为一个容器。和容器上的冲突bean名称(弹簧容器)。
是正确的吗?
如果正确,如何使用wildfly HTTP会话共享为每个容器部署多个WAR?