Spring MVC从应用程序war文件中分离资产

时间:2016-08-14 23:08:37

标签: java spring jsp tomcat servlets

我正在编写一个简单的Web应用程序,名为" webdemo"在tomcat apache服务器上使用java spring和jsp。我的目标是将资产(jsp,images,css,js)与项目war文件分开,并将它们存储在tomcat的classpath中,我将其设置为tomact"" common"夹。

webdemo-servlet.xml中

<?xml version="1.0" encoding="UTF-8"?>


    <import resource="externalizationContext.xml"/> 

    <mvc:annotation-driven/>

    <context:component-scan base-package="com.mckesson.voucher"/>

    <mvc:resources mapping="/images/**" location="classpath:application-assets/webdemo/images/" />
    <mvc:resources mapping="/scripts/**" location="classpath:application-assets/webdemo/scripts/" />

    <bean id="couponBean" class="com.mckesson.voucher.model.CouponBean" scope="session">
        <aop:scoped-proxy />
    </bean>



    <util:properties id="voucherProperties"
        location="classpath:application-config/webdemo/externalization/webdemo.properties" />
    <util:properties id="voucherEnvProperties"
        location="classpath:application-config/webdemo/logging/loggingTags.properties" />
    <util:properties id="voucherDBEnvProperties"
        location="classpath:application-config/datasource/dataSource.properties" />


<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
    <property name="prefix" value="classpath:application-assets/webdemo/" />
    <property name="suffix" value=".jsp" />
</bean>


</beans>

的web.xml

   <!-- General description of your web application -->
      <display-name>McKesson webdemo</display-name>

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/dbContext.xml</param-value>
    </context-param>

    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

    <servlet>
        <servlet-name>webdemo</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    </servlet>      
    <servlet-mapping>
        <servlet-name>webdemo</servlet-name>
        <url-pattern>/home.html</url-pattern>
    </servlet-mapping>  
    <servlet-mapping>
        <servlet-name>webdemo</servlet-name>
        <url-pattern>*.html</url-pattern>
    </servlet-mapping>

      <welcome-file-list>
        <welcome-file>home.html</welcome-file>
    </welcome-file-list>


      <!-- Define the default session timeout for your application,
            in minutes.  From a servlet or JSP page, you can modify
            the timeout for a particular session dynamically by using
            HttpSession.getMaxInactiveInterval(). -->
      <session-config>
            <session-timeout>30</session-timeout><!-- 30 minutes -->
      </session-config>
</web-app>

我们在tomcat上托管了近300个Web项目,最终目标是将所有资产放在tomcat常用文件夹下的每个Web项目的单个位置。

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

这实际上是一个好主意,但你有点不对劲。您需要了解的一件事是您不想将jsp分开。保持在春天。您想要分隔js,css和images,因为它们是静态内容。在企业环境中执行此操作的常见方法是在Tomcat服务器前面安装Apache等Web服务器。您将静态内容放在Apache服务器上并配置该服务器以将静态内容传递给浏览器,而对动态内容的调用将发送到Tomcat并通过Apache服务器进行中继。这减少了Tomcat服务器上的负载。您可以在一台服务器上完成所有操作,但我没有尝试过。