Spring web.xm spring-context spring-mvc

来源:互联网 发布:电脑编程有学校吗 编辑:程序博客网 时间:2024/05/16 17:50

web.xml

<web-app id="WebApp_ID" 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></display-name><!-- Spring加载路径 --><context-param><param-name>contextConfigLocation</param-name><param-value>classpath:spring-context.xml</param-value></context-param><!-- Spring 刷新Introspector防止内存泄露 --><listener><listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class></listener><!-- Spring ApplicationContext 载入 --><listener><listener-class>org.springframework.web.context.ContextLoaderListener</listener-class></listener><!-- 编码进行过滤 --><filter><filter-name>encodingFilter</filter-name><filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class><init-param><param-name>encoding</param-name><param-value>UTF-8</param-value></init-param><init-param><param-name>forceEncoding</param-name><param-value>true</param-value></init-param></filter><filter-mapping><filter-name>encodingFilter</filter-name><url-pattern>/*</url-pattern></filter-mapping><filter>          <filter-name>XSSFiler</filter-name>          <filter-class>              com.tlk.system.security.XSSSecurityFilter          </filter-class>          <init-param>              <param-name>securityconfig</param-name>              <param-value>WEB-INF/classes/xss_security_config.xml</param-value>        </init-param>      </filter>      <filter-mapping>          <filter-name>XSSFiler</filter-name>          <url-pattern>/*</url-pattern>      </filter-mapping><!-- Shiro安全框架过滤器 --><filter><filter-name>shiroFilter</filter-name><filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class><init-param><param-name>targetFilterLifecycle</param-name><param-value>true</param-value></init-param></filter><filter-mapping><filter-name>shiroFilter</filter-name><url-pattern>/*</url-pattern><dispatcher>REQUEST</dispatcher></filter-mapping><!-- 验证码过滤器需要放到Shiro之后 因为Shiro将包装HttpSession 如果不,可能造成两次的sesison id 不一样 --><filter>  <filter-name>JCaptchaFilter</filter-name>  <filter-class>     com.tlk.common.filter.JCaptchaFilter  </filter-class></filter><filter-mapping>    <filter-name>JCaptchaFilter</filter-name>    <url-pattern>/jcaptcha.captcha</url-pattern></filter-mapping><!-- Spring MVC配置 --><servlet><servlet-name>spring</servlet-name><servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class><init-param><description>spring mvc 配置文件</description><param-name>contextConfigLocation</param-name><param-value>classpath:spring-mvc.xml</param-value></init-param><load-on-startup>1</load-on-startup></servlet><servlet-mapping><servlet-name>spring</servlet-name><url-pattern>/</url-pattern></servlet-mapping><!-- 阿里巴巴连接池监控 --><servlet><servlet-name>DruidStatView</servlet-name><servlet-class>com.alibaba.druid.support.http.StatViewServlet</servlet-class></servlet><servlet-mapping><servlet-name>DruidStatView</servlet-name><url-pattern>/druid/*</url-pattern></servlet-mapping><error-page><error-code>404</error-code><location>/WEB-INF/pages/common/error404.jsp</location></error-page><error-page><error-code>500</error-code><location>/WEB-INF/pages/common/error500.jsp</location></error-page><!-- 首页 --><welcome-file-list><welcome-file>/WEB-INF/pages/redirect.html</welcome-file></welcome-file-list></web-app>

spring-context.xml

<pre name="code" class="html"><?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jdbc="http://www.springframework.org/schema/jdbc"xmlns:context="http://www.springframework.org/schema/context"xmlns:task="http://www.springframework.org/schema/task"xsi:schemaLocation="     http://www.springframework.org/schema/context      http://www.springframework.org/schema/context/spring-context-3.2.xsd     http://www.springframework.org/schema/beans      http://www.springframework.org/schema/beans/spring-beans-3.2.xsd     http://www.springframework.org/schema/jdbc      http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd     http://www.springframework.org/schema/tx      http://www.springframework.org/schema/tx/spring-tx-3.2.xsd     http://www.springframework.org/schema/aop      http://www.springframework.org/schema/aop/spring-aop-3.2.xsd     http://www.springframework.org/schema/task      http://www.springframework.org/schema/task/spring-task-3.2.xsd"><bean id="propertyConfigurer"class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"><property name="locations"><list><value>classpath:jdbc.properties</value><value>classpath:mail.properties</value></list></property></bean><bean id="sysDataSource" class="com.alibaba.druid.pool.DruidDataSource"init-method="init" destroy-method="close"><property name="driverClassName" value="${jdbc.sysDriver}" /><property name="url" value="${jdbc.sysUrl}" /><property name="username" value="${jdbc.sysUsername}" /><property name="password" value="${jdbc.sysPassword}" /><!-- 初始化连接大小 --><property name="initialSize" value="3" /><!-- 连接池最大使用连接数量 --><property name="maxActive" value="30" /><!-- 连接池最小空闲 --><property name="minIdle" value="1" /><!-- 获取连接最大等待时间 --><property name="maxWait" value="60000" /><property name="validationQuery" value="${jdbc.validationQuery}" /><property name="testOnBorrow" value="false" /><property name="testOnReturn" value="false" /><property name="testWhileIdle" value="true" /><!-- 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 --><property name="timeBetweenEvictionRunsMillis" value="60000" /><!-- 配置一个连接在池中最小生存的时间,单位是毫秒 --><property name="minEvictableIdleTimeMillis" value="25200000" /><!-- 打开removeAbandoned功能 --><property name="removeAbandoned" value="true" /><!-- 1800秒,也就是30分钟 --><property name="removeAbandonedTimeout" value="1800" /><!-- 关闭abanded连接时输出错误日志 --><property name="logAbandoned" value="true" /><!-- 监控数据库 --><property name="filters" value="stat,slf4j,wall" /></bean><!-- 事务管理 --><bean id="sysTransactionManager"class="org.springframework.jdbc.datasource.DataSourceTransactionManager"><property name="dataSource" ref="sysDataSource" /></bean><!-- 注解方式的事务拦截器 --><tx:annotation-driven transaction-manager="sysTransactionManager"proxy-target-class="true" /><tx:advice id="txAdvice" transaction-manager="sysTransactionManager">        <tx:attributes>            <tx:method name="get*" propagation="REQUIRED" read-only="true" />                <tx:method name="count*" propagation="REQUIRED" read-only="true" />                <tx:method name="find*" propagation="REQUIRED" read-only="true" />                <tx:method name="list*" propagation="REQUIRED" read-only="true" />                <tx:method name="load*" propagation="REQUIRED" read-only="true" />                <tx:method name="read*" propagation="REQUIRED" read-only="true" />                <tx:method name="select*" propagation="REQUIRED" read-only="true" />                <tx:method name="show*" propagation="REQUIRED" read-only="true" />                <tx:method name="*" propagation="REQUIRED" />        </tx:attributes>    </tx:advice>    <aop:config expose-proxy="true" proxy-target-class="true">        <!-- 只对业务逻辑层实施事务 -->        <aop:pointcut id="txPointcut"            expression="execution(* com.tlk..service..*+.*(..))" />        <aop:advisor id="txAdvisor" advice-ref="txAdvice"            pointcut-ref="txPointcut" />    </aop:config>            <!-- 操作日志 -->    <bean id="logAspect" class="com.tlk.system.aspect.LogAspect"></bean>    <aop:config>    <aop:aspect id="logOperateAspect" ref="logAspect">    <aop:pointcut id="logOperatePointcut"    expression="execution(* com.tlk..service..*+.*(..)) && @annotation(com.tlk.system.annotation.LogOperate)" />    <aop:after method="log" pointcut-ref="logOperatePointcut"/>    </aop:aspect>    </aop:config><!-- 定义SqlSessionFactory --><bean id="sysSqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"><property name="dataSource" ref="sysDataSource" /><property name="mapperLocations"><list><value>classpath*:com/tlk/**/**/mapper/*Mapper.xml</value></list></property><property name="typeAliasesPackage" value="com.tlk.system.model,com.tlk.cm.model" /></bean><!-- scan for mappers and let them be autowired --><bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"><property name="sqlSessionFactoryBeanName" value="sysSqlSessionFactory" /><property name="basePackage" value="com.tlk.**.dao" /></bean><!-- 自动扫描(自动注入) --><context:component-scan base-package="com.tlk.**.**" /><context:annotation-config /><context:annotation-config /><!-- spring工具类 方便在非spring管理环境中获取bean --><bean id="springUtils" class="com.tlk.common.utils.SpringUtils" /><!-- 国际化的消息资源文件(本系统中主要用于显示/错误消息定制) --><bean id="messageSource"class="org.springframework.context.support.ReloadableResourceBundleMessageSource"><property name="basenames"><list><!-- 在web环境中一定要定位到classpath 否则默认到当前web应用下找 --><value>classpath:messages</value></list></property><property name="useCodeAsDefaultMessage" value="false" /><property name="defaultEncoding" value="UTF-8" /><property name="cacheSeconds" value="60" /></bean><!-- 发送邮件 --><bean id="javaMailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl"><property name="host">  <value>${mail.stmp}</value>  </property>  <property name="javaMailProperties">  <props>  <prop key="mail.smtp.auth">${mail.smtp.auth}</prop>  <prop key="mail.smtp.timeout">${mail.smtp.timeout}</prop>  </props>  </property>  <property name="username">  <value>${mail.username}</value>  </property>  <property name="password">  <value>${mail.password}</value>  </property>  </bean><!-- 用户审核发送邮件 --><bean id="userAuditMailSender" class="com.tlk.mail.task.CommonMailSender"><property name="from" value="${mail.username}"></property><property name="subject" value="tlk-用户审核"></property></bean><import resource="classpath:spring-context-shiro.xml" /><import resource="classpath:spring-cache.xml"/><import resource="classpath:spring-dubbo.xml"/><import resource="classpath:spring-context-quartz.xml"/></beans>

spring-mvc.xml

<beans xmlns="http://www.springframework.org/schema/beans"xmlns:context="http://www.springframework.org/schema/context"xmlns:p="http://www.springframework.org/schema/p"xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="        http://www.springframework.org/schema/beans             http://www.springframework.org/schema/beans/spring-beans-3.2.xsd        http://www.springframework.org/schema/context         http://www.springframework.org/schema/context/spring-context-3.2.xsd         http://www.springframework.org/schema/mvc        http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">            <!-- 静态调用spring容器中bean对象工具类 --><bean name="springBeanLocator" class="com.tlk.common.utils.SpringBeanLocator" lazy-init="false"/><bean id="exceptionResolver"class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver"><property name="exceptionMappings"><props><prop key="com.tlk.order.exception.CanNotOperateException">/common/canNotOperate</prop><prop key="org.apache.shiro.authz.UnauthorizedException">/common/noAuth</prop><prop key="com.tlk.common.exception.CommonException">/common/commonError</prop><prop key="java.io.FileNotFoundException">/common/error404</prop><prop key="java.lang.Exception">/common/error500</prop></props></property><property name="warnLogCategory" value="WARN"></property></bean><context:component-scan base-package="com.**.**.**.web.controller"use-default-filters="false"><context:include-filter type="annotation"expression="org.springframework.stereotype.Controller" /></context:component-scan><!-- enable SpringMVC demarcation with annotations --><mvc:annotation-driven><mvc:message-converters register-defaults="true">            <!-- StringHttpMessageConverter编码为UTF-8,防止乱码 -->            <bean class="org.springframework.http.converter.StringHttpMessageConverter">                <constructor-arg value="UTF-8"/>                <property name = "supportedMediaTypes">                    <list>                        <bean class="org.springframework.http.MediaType">                            <constructor-arg index="0" value="text"/>                            <constructor-arg index="1" value="plain"/>                            <constructor-arg index="2" value="UTF-8"/>                        </bean>                        <bean class="org.springframework.http.MediaType">                            <constructor-arg index="0" value="*"/>                            <constructor-arg index="1" value="*"/>                            <constructor-arg index="2" value="UTF-8"/>                        </bean>                    </list>                </property>            </bean><bean class="org.springframework.http.converter.ByteArrayHttpMessageConverter"/>            <!-- 避免IE执行AJAX时,返回JSON出现下载文件 -->            <bean id="fastJsonHttpMessageConverter" class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter">                <property name="supportedMediaTypes">                    <list>                        <value>application/json;charset=UTF-8</value>                    </list>                </property>            </bean>        </mvc:message-converters></mvc:annotation-driven><mvc:default-servlet-handler /><!-- 静态资源映射 -->    <mvc:resources mapping="/static/**" location="/WEB-INF/static/"/>    <!-- 默认的视图解析器 在上边的解析错误时使用 (默认使用html)- -->    <bean id="defaultViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"          p:order="1">        <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>        <property name="contentType" value="text/html"/>        <property name="prefix" value="/WEB-INF/pages/"/>        <property name="suffix" value=".jsp"/>    </bean>         <mvc:interceptors>        <mvc:interceptor><mvc:mapping path="/**"/><bean class="com.tlk.common.interceptor.RepeatTokenInteceptor" /></mvc:interceptor></mvc:interceptors>    <!-- Freemarker配置     <bean id="freemarkerConfig"          class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer">        <property name="templateLoaderPath" value="/WEB-INF/pages" />        <property name="freemarkerSettings">            <props>                <prop key="template_update_delay">0</prop>                <prop key="default_encoding">UTF-8</prop>                <prop key="number_format">0.##########</prop>                <prop key="datetime_format">yyyy-MM-dd HH:mm:ss</prop>                <prop key="classic_compatible">true</prop>                <prop key="template_exception_handler">ignore</prop>            </props>        </property>    </bean>    -->    <!--视图解释器     <bean id="viewResolver"          class="org.springframework.web.servlet.view.freemarker.FreeMarkerViewResolver">        <property name="exposeSpringMacroHelpers" value="true"/>        <property name="requestContextAttribute" value="rc"/>        <property name="prefix" value="/"/>        <property name="suffix" value=".ftl"/>        <property name="contentType" value="text/html;charset=UTF-8"></property>    </bean>--><!-- 上传 --><bean id="multipartResolver"class="org.springframework.web.multipart.commons.CommonsMultipartResolver"><property name="maxUploadSize" value="102400000" /></bean></beans>

基本上都已注释,还有疑问请留言


0 0
原创粉丝点击