我在 spring 3.1 配置中使用 mvc:resources 时遇到问题。
最初,我正在研究在 tomcat 6 上集成 spring 3.0、JPA 的项目。在 tomcat 6 服务器上,我使用 web.xml 中的以下 servlet 映射从我的应用程序访问静态内容(css、js 和 png 等)。
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>/static/*</url-pattern>
</servlet-mapping>
我不确定这是否是最佳实践,但它在 tomcat6 环境中运行良好。它在 tomcat 7 上不起作用。所以我切换到 spring 3.1 以使用 applicationContext 中的 mvc:resources 元素。我为 3.1 更改了 xml 命名空间,并在 applicationContext.xml 中添加了这两行。
<mvc:annotation-driven/>
<mvc:resources location="/resources/" mapping="/static/**"/>
在我添加上述两行配置之前,整个应用程序运行良好。但是现在框架没有检测到所有带注释的控制器。我在应用程序根目录中没有 index.jsp 或任何欢迎文件,我将根请求“/”映射到带注释的 RootController.java。所以应用程序主页甚至没有加载。
当我在网上搜索解决方案时,我发现 mvc:annotation-driven 替换了一些我认为是由框架隐式定义的默认 bean 配置。我在这个论坛中找到了一些适用于某些人的解决方案,即我自己明确定义一些 bean 配置。我尝试添加以下两行
<bean class ="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"/>
<bean class ="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter"/>
但不幸的是,这并不能解决我的问题。我不确定这是否是我现在面临的真正问题,所以这是我的 applicationContext.xml 供您检查我当前的配置。
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">
<context:component-scan base-package="com.yewintko.uog.emailcampaignmanager">
<context:exclude-filter expression="org.springframework.stereotype.Controller" type="annotation"/>
</context:component-scan>
<tx:annotation-driven/>
<mvc:annotation-driven/>
<mvc:resources location="/resources/" mapping="/static/**"/>
<bean class = "org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping" />
<bean class = "org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter"/>
<context:property-placeholder location="classpath:database.properties"/>
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="${database.driver}"/>
<property name="url" value="${database.url}"/>
<property name="username" value="${database.username}"/>
<property name="password" value="${database.password}"/>
</bean>
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory"/>
</bean>
<tx:annotation-driven mode="aspectj" transaction-manager="transactionManager"/>
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="persistenceUnitName" value="EmailCampaignManager"/>
<property name="dataSource" ref="dataSource"/>
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
<property name="databasePlatform" value="${database.platform}"/>
<property name="showSql" value="${database.showSql}"/>
<property name="generateDdl" value="${database.generateDdl}"/>
</bean>
</property>
<property name="jpaProperties">
<props>
<prop key="hibernate.ejb.naming_strategy">org.hibernate.cfg.ImprovedNamingStrategy</prop>
</props>
</property>
</bean>
</beans>
我对spring很陌生,不知道我的applicationContext中缺少哪个配置。如果你有一点空闲时间,请有人帮助我。如果您需要更多信息,请告诉我。
关于 Yewint