SETUP :
在我们公司,我们运行多个站点(许多.war文件部署在一个TomCat服务器中)。但是,大多数.WAR文件在它们使用的.class中是相同的。所以我们将公共类重构为一个单独的.jar,然后将其包含在每个.wars中。
现在,意识到所有.war包含相同的.jar,我们决定通过删除重复的.jar并将其添加到catalina.properties中的shared.loader来进一步减小.war文件的大小。 (我们使用的是Tomcat 7)。
我们将.war文件保留为仅包含特定于每个站点配置的配置。
我们正在使用Spring来帮助我们一起布线。
问题:
新重构的.jar文件中的某些类包含@Value注释。似乎@Value注释没有被“执行”,并且从未设置被注释的值。如果我们将.jar文件添加回.war,则注释可以正常工作并设置值。但是,只需将.jar拉入shared.loader类路径就无法处理@Value注释。
有趣的是@Component注释工作正常,关系正确@Autowired,只是所有@Value注释字段都为空。我们正在使用Sprin 3.1.4。
我们正在使用Spring的PropertyPlaceholderConfigurer来读取属性文件。确认者是由.war。
引用的applicationContext.xml创建的问题:
有没有办法解决这个问题,同时继续将.jar文件放在依赖它的.war文件的外部?
配置
以下是.war文件中的配置。常见的.jar文件没有任何配置文件:
applicationContext.xml:
-----------------------
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<bean id="config" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:application.properties</value>
</list>
</property>
<property name="systemPropertiesModeName">
<value>SYSTEM_PROPERTIES_MODE_OVERRIDE</value>
</property>
</bean>
<!-- Scan for components in .jar -->
<context:component-scan base-package="com.usamp.gozing.comm.service" />
<!-- Scan for components in the .war -->
<context:component-scan base-package="com.springapp.mvc.rest" />
</beans>
这是application.properties:
application.hostname="test1eeee33332342341234:-in war"
workflow.rule.name="matched workflow - in war"
配置是通过标准web.xml引导的:
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>Dynamic ApplicationContext</display-name>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<servlet>
<servlet-name>jersey-serlvet</servlet-name>
<servlet-class>
com.sun.jersey.spi.spring.container.servlet.SpringServlet
</servlet-class>
<init-param>
<param-name>com.sun.jersey.config.property.packages</param-name>
<param-value>com.springapp.mvc.rest</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>jersey-serlvet</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
</web-app>
感谢。
-AP _