ssm(spring+springmvc+mybatis)的详细配置

来源:互联网 发布:网络搞笑日语中文谐音 编辑:程序博客网 时间:2024/06/16 23:42

pom.xml

<properties><spring.version>4.3.10.RELEASE</spring.version><mybatis.version>3.4.5</mybatis.version><!-- log4j日志文件管理包版本 --><slf4j.version>1.7.25</slf4j.version><log4j.version>1.2.17</log4j.version><!-- junit版本号 --><junit.version>4.12</junit.version></properties><dependencies><dependency><groupId>org.springframework</groupId><artifactId>spring-core</artifactId><version>${spring.version}</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-webmvc</artifactId><version>${spring.version}</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>${spring.version}</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-aop</artifactId><version>${spring.version}</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-web</artifactId><version>${spring.version}</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-jdbc</artifactId><version>${spring.version}</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-aspects</artifactId><version>${spring.version}</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-tx</artifactId><version>${spring.version}</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-expression</artifactId><version>4.3.10.RELEASE</version></dependency><!--单元测试依赖 --><dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>${junit.version}</version><scope>test</scope></dependency><!-- 日志文件管理包 --><!-- log start --><dependency><groupId>log4j</groupId><artifactId>log4j</artifactId><version>${log4j.version}</version></dependency><dependency><groupId>org.slf4j</groupId><artifactId>slf4j-api</artifactId><version>${slf4j.version}</version></dependency><dependency><groupId>org.slf4j</groupId><artifactId>slf4j-log4j12</artifactId><version>${slf4j.version}</version></dependency><!-- log end --><!--spring单元测试依赖 --><dependency><groupId>org.springframework</groupId><artifactId>spring-test</artifactId><version>${spring.version}</version><scope>test</scope></dependency><!--mybatis依赖 --><dependency><groupId>org.mybatis</groupId><artifactId>mybatis</artifactId><version>${mybatis.version}</version></dependency><!-- mybatis/spring包 --><dependency><groupId>org.mybatis</groupId><artifactId>mybatis-spring</artifactId><version>1.3.1</version></dependency><!-- mysql驱动包 --><dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>5.1.43</version></dependency><!-- 数据源配置包 --><dependency><groupId>org.apache.commons</groupId><artifactId>commons-dbcp2</artifactId><version>2.1.1</version></dependency><dependency><groupId>commons-logging</groupId><artifactId>commons-logging</artifactId><version>1.0.4</version></dependency><dependency><groupId>commons-pool</groupId><artifactId>commons-pool</artifactId><version>1.5.4</version></dependency><dependency><groupId>commons-lang</groupId><artifactId>commons-lang</artifactId><version>2.5</version></dependency><dependency>      <groupId>javax.servlet</groupId>      <artifactId>javax.servlet-api</artifactId>      <version>3.1.0</version>      <scope>provided</scope>  </dependency><!-- file upload --><!-- https://mvnrepository.com/artifact/commons-io/commons-io --><dependency>    <groupId>commons-io</groupId>    <artifactId>commons-io</artifactId>    <version>2.4</version></dependency><!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload --><dependency>    <groupId>commons-fileupload</groupId>    <artifactId>commons-fileupload</artifactId>    <version>1.2.1</version></dependency><!-- json --><dependency>        <groupId>com.fasterxml.jackson.core</groupId>        <artifactId>jackson-core</artifactId>        <version>2.7.4</version>  </dependency>    <dependency>        <groupId>com.fasterxml.jackson.core</groupId>        <artifactId>jackson-databind</artifactId>        <version>2.7.4</version>    </dependency>    <dependency>        <groupId>com.fasterxml.jackson.core</groupId>        <artifactId>jackson-annotations</artifactId>        <version>2.7.4</version>  </dependency> </dependencies><build>  <finalName>sshDemo</finalName>  <defaultGoal>compile</defaultGoal>      <plugins>    <plugin>            <groupId>org.apache.maven.plugins</groupId>            <artifactId>maven-war-plugin</artifactId>            <version>3.0.0</version>            <configuration>                <webResources>                    <resource>                        <directory>WebContent</directory>                    </resource>                </webResources>            </configuration>        </plugin>        <!-- define the project compile level -->          <plugin>              <groupId>org.apache.maven.plugins</groupId>              <artifactId>maven-compiler-plugin</artifactId>              <version>3.6.0</version>              <configuration>                  <source>1.7</source>                  <target>1.7</target>                <encoding>utf8</encoding>             </configuration>          </plugin>        <plugin>       <artifactId>maven-dependency-plugin</artifactId>           <executions>           <execution>               <phase>install</phase>               <goals>                   <goal>copy-dependencies</goal>               </goals>               <configuration>                   <outputDirectory>${project.build.directory}/lib</outputDirectory>               </configuration>           </execution>       </executions>   </plugin>      </plugins>    </build>



web.xml

<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">  <!-- The definition of the Root Spring Container shared by all Servlets and Filters --><context-param><param-name>contextConfigLocation</param-name><param-value>classpath:root-context.xml</param-value></context-param><!-- 编码过滤器 --><filter><description>字符集过滤器</description><filter-name>encodingFilter</filter-name><filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class><async-supported>true</async-supported><init-param><description>字符集编码</description><param-name>encoding</param-name><param-value>UTF-8</param-value></init-param></filter><filter-mapping><filter-name>encodingFilter</filter-name><url-pattern>/*</url-pattern></filter-mapping><!-- Creates the Spring Container shared by all Servlets and Filters -->         <!-- 配置启动spring容器 --><listener><listener-class>org.springframework.web.context.ContextLoaderListener</listener-class></listener><!-- Spring MVC servlet --><servlet><servlet-name>SpringMVC</servlet-name><servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class><init-param><param-name>contextConfigLocation</param-name><param-value>classpath*:spring/spring-mvc.xml</param-value></init-param><load-on-startup>1</load-on-startup><async-supported>true</async-supported></servlet><servlet-mapping><servlet-name>SpringMVC</servlet-name><!-- 此处可以可以配置成*.do,对应struts的后缀习惯 --><url-pattern>*.do</url-pattern></servlet-mapping>  <filter><filter-name>HiddenHttpMethodFilter</filter-name><filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class></filter><filter-mapping><filter-name>HiddenHttpMethodFilter</filter-name><url-pattern>/*</url-pattern></filter-mapping><welcome-file-list><welcome-file>/index.jsp</welcome-file></welcome-file-list><!-- 配置session超时时间,单位分钟 --><session-config><session-timeout>15</session-timeout></session-config></web-app>



root-context.xml

<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"    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.xsd">    <!-- Root Context: defines shared resources visible to all other web components -->        <import resource="/spring/spring-beans.xml" />    <import resource="/spring/spring-mybatis.xml" /></beans>


spring-mvc.xml

<?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:context="http://www.springframework.org/schema/context"xmlns:mvc="http://www.springframework.org/schema/mvc"xmlns:util="http://www.springframework.org/schema/util"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsdhttp://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsdhttp://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.2.xsd"><!-- <mvc:default-servlet-handler/><mvc:annotation-driven></mvc:annotation-driven> --><mvc:annotation-driven/><mvc:default-servlet-handler/><mvc:resources mapping="/resources/**" location="/resources/" /><context:component-scan base-package="pers.weisg.ssm" use-default-filters="false"><!-- <context:include-filter type="annotation"        expression="org.springframework.stereotype.Service" /> --><context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/><context:include-filter type="annotation" expression="org.springframework.web.bind.annotation.ControllerAdvice"/></context:component-scan>        <!-- 定义跳转的文件的前后缀 ,视图模式配置-->     <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">          <!-- 这里的配置我的理解是自动给后面action的方法return的字符串加上前缀和后缀,变成一个 可用的url地址 -->          <property name="prefix" value="/WEB-INF/jsp/" />          <property name="suffix" value=".jsp" />      </bean>    <!--避免IE执行AJAX时,返回JSON出现下载文件 -->      <bean id="mappingJacksonHttpMessageConverter"          class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">          <property name="supportedMediaTypes">              <list>                  <value>text/html;charset=UTF-8</value>              </list>          </property>      </bean>      <!-- 启动SpringMVC的注解功能,完成请求和注解POJO的映射 -->      <bean          class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">          <property name="messageConverters">              <list>                  <ref bean="mappingJacksonHttpMessageConverter" /> <!-- JSON转换器 -->              </list>          </property>      </bean>        <!-- 配置文件上传,如果没有使用文件上传可以不用配置,当然如果不配,那么配置文件中也不必引入上传组件包 -->     <bean id="multipartResolver"            class="org.springframework.web.multipart.commons.CommonsMultipartResolver">            <!-- 默认编码 -->          <property name="defaultEncoding" value="utf-8" />            <!-- 文件大小最大值 -->          <property name="maxUploadSize" value="10485760000" />            <!-- 内存中的最大值 -->          <property name="maxInMemorySize" value="40960" />        </bean> </beans>


spring-beans.xml

<?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:context="http://www.springframework.org/schema/context"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsdhttp://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd"><!-- 自动扫描 -->      <!-- <context:component-scan base-package="pers.weisg.ssm" /> --><!-- 引入配置文件 -->      <!-- <bean id="propertyConfigurer"          class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">          <property name="location" value="classpath:jdbc.properties" />      </bean> -->    <context:property-placeholder location="classpath:jdbc.properties"/>        <context:component-scan base-package="pers.weisg.ssm" use-default-filters="false"><context:include-filter type="annotation"        expression="org.springframework.stereotype.Service" /><!-- <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/> --><context:include-filter type="annotation" expression="org.springframework.web.bind.annotation.ControllerAdvice"/></context:component-scan><!-- <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource"> <property name="basenames"> <list> <value>message-error</value> <value>exceptions</value> <value>windows</value> </list> </property> </bean> --><!-- <bean id="myJobA" class="com.springsecurity.quartz.MyJobA"> </bean> --><!-- 启动触发器的配置开始 --><!-- <bean name="startQuertz" lazy-init="false" autowire="no"class="org.springframework.scheduling.quartz.SchedulerFactoryBean"><property name="triggers"><list><ref bean="myJobTrigger" /></list></property></bean> --><!-- 启动触发器的配置结束 --><!-- 调度的配置开始 --><!--quartz-1.8以前的配置 <bean id="myJobTrigger"class="org.springframework.scheduling.quartz.CronTriggerBean"><property name="jobDetail"><ref bean="myJobDetail" /></property><property name="cronExpression"><value>0/1 * * * * ?</value></property></bean>--><!-- 要调用的工作类 --><!-- <bean id="quartzJob" class="com.kay.quartz.QuartzJob"></bean>定义调用对象和调用对象的方法<bean id="jobtask"class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">调用的类<property name="targetObject"><ref bean="quartzJob" /></property>调用类中的方法<property name="targetMethod"><value>work</value></property></bean>定义触发时间<bean id="doTime" class="org.springframework.scheduling.quartz.CronTriggerBean"><property name="jobDetail"><ref bean="jobtask" /></property>cron表达式<property name="cronExpression"><value>10,15,20,25,30,35,40,45,50,55 * * * * ?</value></property></bean>总管理类 如果将lazy-init='false'那么容器启动就会执行调度程序<bean id="startQuertz" lazy-init="false" autowire="no"class="org.springframework.scheduling.quartz.SchedulerFactoryBean"><property name="triggers"><list><ref bean="doTime" /></list></property></bean> --></beans>

spring-mybatis.xml

<?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:context="http://www.springframework.org/schema/context"xmlns:tx="http://www.springframework.org/schema/tx"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsdhttp://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsdhttp://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd"><!-- 配置数据源 --><!-- 引入properties文件 --><!-- <context:property-placeholder location="classpath:jdbc.properties"/><context:property-placeholder location="classpath:quartz.properties"></context:property-placeholder> --><bean name="dataSource" class="org.apache.commons.dbcp2.BasicDataSource" destroy-method="close"><property name="driverClassName" value="${jdbc.driver}" /><property name="url" value="${jdbc.url}" /><property name="username" value="${jdbc.username}" /><property name="password" value="${jdbc.password}" /></bean><!-- 配置 Spirng 的 JdbcTemplate --><bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"><property name="dataSource" ref="dataSource"></property></bean><!-- myBatis文件 --><bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"><property name="dataSource" ref="dataSource" /><!-- 自动扫描module目录, 省掉Configuration.xml里的手工配置 --><!-- <property name="mapperLocations" value="classpath:com/springsecurity/*/mapping/*.xml" /> --><!-- <property name="mapperLocations" value="classpath*:spring/SqlMapConfig.xml" /> --><property name="mapperLocations" value="classpath:pers/weisg/ssm/sqlMapping/*.xml" /><!-- <property name="mapperLocations" value="classpath*:com/springsecurity/mybatisConfig.xml" /> --></bean><!-- dao文件对象注入 --><bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"><property name="basePackage" value="pers.weisg.ssm.dao" /><!-- 这个属性一般都用不到,只有当你配置多数据源的时候,这是会有多个sqlSessionFactory,你就需要通过该属性来指定哪一个sqlSessionFactory(值为SqlSessionFactoryBean <bean>配置中的id属性) --><property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" /></bean><!-- spring和MyBatis完美整合,不需要mybatis的配置映射文件 --><!-- <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"><property name="dataSource" ref="dataSource" />自动扫描module目录, 省掉Configuration.xml里的手工配置自动扫描mapping.xml文件<property name="mapperLocations" value="classpath:com/weisg/website/mapping/*.xml" /></bean> --><!-- 注解方式配置事物 --><tx:annotation-driven transaction-manager="transactionManager" /><!-- 配置事务管理器 --><bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"><property name="dataSource" ref="dataSource" /></bean></beans>

SqlMapConfig.xml
<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN""http://mybatis.org/dtd/mybatis-3-config.dtd"><configuration><settings>  <setting name="cacheEnabled" value="true"/>  <setting name="callSettersOnNulls" value="true"/></settings>        <mappers>    <mapper resource="pers/weisg/ssm/sqlMapping/SysUserMapper.xml" />    </mappers>    </configuration>

jdbc.properties

jdbc.driver=com.mysql.jdbc.Driverjdbc.url=jdbc:mysql:///shirojdbc.username=rootjdbc.password=root#定义初始连接数  jdbc.initialSize=0  #定义最大连接数  jdbc.maxActive=20  #定义最大空闲  jdbc.maxIdle=20  #定义最小空闲  jdbc.minIdle=1  #定义最长等待时间  jdbc.maxWait=60000 

log4j.properties

### set log levels ###    log4j.rootLogger=info,error,info,consolelog4j.appender.console=org.apache.log4j.ConsoleAppender     log4j.appender.console.layout=org.apache.log4j.PatternLayout     log4j.appender.console.layout.ConversionPattern=[%-d{yyyy-MM-dd HH\:mm\:ss}] - [%p] %m%n#     log4j.logger.info=info  log4j.appender.info=pers.weisg.ssm.common.log4j.MyAppenderlog4j.appender.info.File=org.apache.log4j.DailyRollingFileAppenderlog4j.appender.info.layout=org.apache.log4j.PatternLayout  log4j.appender.info.layout.ConversionPattern=[%-d{yyyy-MM-dd HH\:mm\:ss}] - [%p] %m%nlog4j.appender.info.Threshold = INFOlog4j.appender.info.append=truelog4j.appender.info.File=D:/eclipse/log/audit.log  #error  log4j.logger.error=errorlog4j.appender.error=pers.weisg.ssm.common.log4j.MyAppender    log4j.appender.error.File=org.apache.log4j.DailyRollingFileAppenderlog4j.appender.error.layout=org.apache.log4j.PatternLayout     log4j.appender.error.layout.ConversionPattern=%-d{yyyy-MM-dd HH\:mm\:ss} - [%p] %m%nlog4j.appender.error.Threshold = ERRORlog4j.appender.error.append=true log4j.appender.error.File=D:/eclipse/log/error.log

MyAppender.class

package pers.weisg.ssm.common.log4j;import org.apache.log4j.DailyRollingFileAppender;import org.apache.log4j.Priority;public class MyAppender extends DailyRollingFileAppender {public boolean isAsSevereAsThreshold(Priority priority) { //只判断是否相等,而不判断优先级  return this.getThreshold().equals(priority);}}















阅读全文
0 0
原创粉丝点击