美文网首页
项目文件-2

项目文件-2

作者: knock | 来源:发表于2020-08-27 14:22 被阅读0次

    UserMapper.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
    <mapper namespace="com.spring.ssm.dao.UserDao">
    
    
        <select id="listUser" resultType="User">
            select  *  from  TEST
        </select>
    
    
    
        <select id="listUserByName" resultType="User">
            select  *  from  TEST
            <where>
              and   name=#{name}
            </where>
        </select>
    
    </mapper>
    
    

    jdbc.properties

    #mysql version database druid setting
    validationQuery=SELECT 1
    #driverClasss=com.mysql.jdbc.Driver
    driverClasss=com.mysql.cj.jdbc.Driver
    jdbcTemplate.fetchSize=350
    jdbcUrl=jdbc:mysql://localhost:3306/my_database?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2B8
    username=xxxxxxxxx
    password=xxxxxxx
    
    

    log4j2.xml

    <?xml version="1.0" encoding="UTF-8"?>
    
    <!-- slf4j   common.logging-->
    <Configuration status="OFF" monitorInterval="1800">
        <properties>
            <property name="LOG_HOME">../logs/ssm-demo</property>
            <property name="FILE_NAME">ssm-demo</property>
        </properties>
    
        <Appenders>
            <Console name="Console" target="SYSTEM_OUT">
                <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
            </Console>
    
            <RollingRandomAccessFile name="running-log" fileName="${LOG_HOME}/${FILE_NAME}.log" filePattern="${LOG_HOME}/$${date:yyyy-MM}/${FILE_NAME}-%d{yyyy-MM-dd}-%i.log.gz">
                <PatternLayout pattern="%date{yyyy-MM-dd HH:mm:ss.SSS} %level [%thread][%file:%line] - %msg%n"/>
                <Policies>
                    <TimeBasedTriggeringPolicy/>
                    <SizeBasedTriggeringPolicy size="50 MB"/>
                </Policies>
                <DefaultRolloverStrategy max="20"/>
            </RollingRandomAccessFile>
        </Appenders>
    
        <Loggers>
    
            <Logger name="com.spring.ssm.dao" level="DEBUG" additivity="true"></Logger>
    
            <!--<logger name="org.springframework.jdbc.core" additivity="true">-->
                <!--<level value="DEBUG" />-->
                <!--&lt;!&ndash; 日志输出地 &ndash;&gt;-->
                <!--<appender-ref ref="LOG.DEBUG" />-->
            <!--</logger>-->
    
            <Root level="info">
                <AppenderRef ref="Console"/>
                <AppenderRef ref="running-log"/>
            </Root>
    
        </Loggers>
    </Configuration>
    

    mybatis-config.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>
            <!-- sql语句的开关 -->
            <!-- <setting name="logImpl" value="LOG4J" />-->
            <setting name="logImpl" value="LOG4J2" />
            <!-- 打开延迟加载 的开关 -->
            <setting name="lazyLoadingEnabled" value="true" />
            <!-- 将积极加载改为消极加载即按需要加载 -->
            <setting name="aggressiveLazyLoading" value="false" />
            <!-- 开启二级缓存 -->
            <setting name="cacheEnabled" value="true" />
            <!-- 自动映射任意复杂结构 -->
            <setting name="autoMappingBehavior" value="FULL" />
            <!-- 允许映射结果null -->
            <setting name="callSettersOnNulls" value="true" />
        </settings>
    
        <typeAliases>
            <!-- type指的是javabean的完全限定名   alias就是指代别名-->
            <typeAlias alias="User" type="com.spring.ssm.entity.UserEntity" />
        </typeAliases>
    
    
        <!-- 基于pagehelper的分页 -->
        <plugins>
        <!-- com.github.pagehelper为PageHelper类所在包名 -->
        <plugin interceptor="com.github.pagehelper.PageHelper">
            <!-- 4.0.0以后版本可以不设置该参数 -->
            <property name="dialect" value="mysql"/>
            <!-- 该参数默认为false -->
            <!-- 设置为true时,会将RowBounds第一个参数offset当成pageNum页码使用 -->
            <!-- 和startPage中的pageNum效果一样-->
            <property name="offsetAsPageNum" value="true"/>
            <!-- 该参数默认为false -->
            <!-- 设置为true时,使用RowBounds分页会进行count查询 -->
            <property name="rowBoundsWithCount" value="true"/>
            <!-- 设置为true时,如果pageSize=0或者RowBounds.limit = 0就会查询出全部的结果 -->
            <!-- (相当于没有执行分页查询,但是返回结果仍然是Page类型)-->
            <property name="pageSizeZero" value="true"/>
            <!-- 3.3.0版本可用 - 分页参数合理化,默认false禁用 -->
            <!-- 启用合理化时,如果pageNum<1会查询第一页,如果pageNum>pages会查询最后一页 -->
            <!-- 禁用合理化时,如果pageNum<1或pageNum>pages会返回空数据 -->
            <property name="reasonable" value="true"/>
            <!-- 3.5.0版本可用 - 为了支持startPage(Object params)方法 -->
            <!-- 增加了一个`params`参数来配置参数映射,用于从Map或ServletRequest中取值 -->
            <!-- 可以配置pageNum,pageSize,count,pageSizeZero,reasonable,orderBy,不配置映射的用默认值 -->
            <!-- 不理解该含义的前提下,不要随便复制该配置 -->
            <property name="params" value="pageNum=pageHelperStart;pageSize=pageHelperRows;"/>
            <!-- 支持通过Mapper接口参数来传递分页参数 -->
            <property name="supportMethodsArguments" value="false"/>
            <!-- always总是返回PageInfo类型,check检查返回类型是否为PageInfo,none返回Page -->
            <property name="returnPageInfo" value="none"/>
        </plugin>
    </plugins>
    </configuration>
    
    

    spring.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:p="http://www.springframework.org/schema/p"
           xmlns:context="http://www.springframework.org/schema/context"
           xmlns:aop="http://www.springframework.org/schema/aop"
           xmlns:task="http://www.springframework.org/schema/task" xmlns:cache="http://www.springframework.org/schema/cache"
           xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop.xsd
        http://www.springframework.org/schema/task
        http://www.springframework.org/schema/task/spring-task.xsd http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache.xsd">
    
       <context:component-scan base-package="com.spring.ssm"/>
    
    
        <!-- 自动扫描 -->
        <aop:aspectj-autoproxy proxy-target-class="true" expose-proxy="true" />
        <!-- 启用aop -->
        <aop:aspectj-autoproxy/>
        <context:annotation-config/>
    
    
        <bean id="configProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
            <property name="locations">
                <list>
                    <value>classpath:jdbc.properties</value>
                </list>
            </property>
            <property name="fileEncoding" value="UTF-8"/>
        </bean>
    
        <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer">
            <property name="properties" ref="configProperties"/>
        </bean>
    
    
    </beans>
    

    spring-mvc.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
           xmlns:p="http://www.springframework.org/schema/p"
           xmlns:aop="http://www.springframework.org/schema/aop"
           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"
           xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
            http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
    
        <context:component-scan base-package="com.spring.ssm.controller"></context:component-scan>
    
    
        <!-- 让springmvc自动识别静态资源文件: js, css, 图片等 -->
        <mvc:default-servlet-handler/>
    
        <!-- 在实际开发中通常都需配置 mvc:annotation-driven 标签 使用@RequestMapping  @Controller-->
        <mvc:annotation-driven>
            <mvc:message-converters register-defaults="true">
                <bean class="org.springframework.http.converter.StringHttpMessageConverter">
                    <property name="supportedMediaTypes" value = "text/html;charset=UTF-8" />
                </bean>
            </mvc:message-converters>
        </mvc:annotation-driven>
    
        <!-- 避免IE执行AJAX时,返回JSON出现下载文件 -->
        <bean id="mappingJacksonHttpMessageConverter"
              class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
            <property name="supportedMediaTypes">
                <list>
                    <value>application/json;charset=UTF-8</value>
                </list>
            </property>
        </bean>
    
        <!-- 启动Spring MVC的注解功能,完成请求和注解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" p:defaultEncoding="UTF-8" />
    
        <!--&lt;!&ndash; 对模型视图名称的解析,即在模型视图名称添加前后缀 p:prefix中模板放置路径&ndash;&gt;-->
        <bean id="velocityConfig"
              class="org.springframework.web.servlet.view.velocity.VelocityConfigurer">
            <property name="resourceLoaderPath" value="/"/>
            <property name="velocityProperties">
                <props>
                    <prop key="input.encoding">UTF-8</prop>
                    <prop key="output.encoding">UTF-8</prop>
                </props>
            </property>
        </bean>
    
    
        <bean id="viewResolver" class="org.springframework.web.servlet.view.velocity.VelocityViewResolver"
              p:suffix=".html" p:contentType="text/html; charset=UTF-8" p:exposeRequestAttributes="true"
              p:exposeSessionAttributes="true" p:dateToolAttribute="dateTool" p:numberToolAttribute="numberTool"/>
    
    
        <!-- 拦截器 -->
        <mvc:interceptors>
            <!--记录请求时间,并打印日志,此拦截器放在第一个比较准-->
            <mvc:interceptor>
                <!-- 对所有的请求拦截使用/** ,对某个模块下的请求拦截使用:/myPath/* -->
                <mvc:mapping path="/**"/>
                <!--排除的URL-->
                <mvc:exclude-mapping path="/css/**"/>
                <mvc:exclude-mapping path="/js/**"/>
                <mvc:exclude-mapping path="/img/**"/>
                <mvc:exclude-mapping path="/excel/**"/>
                <mvc:exclude-mapping path="/error/**"/>
    
                <bean class="com.spring.ssm.webutils.SpringMVCInterceptor"/>
            </mvc:interceptor>
            <!--定义本地化变更拦截器-->
        </mvc:interceptors>
    </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: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.xsd
                            http://www.springframework.org/schema/context
                            http://www.springframework.org/schema/context/spring-context.xsd
                            http://www.springframework.org/schema/tx
                            http://www.springframework.org/schema/tx/spring-tx.xsd">
    
        <!-- 配置数据源 org.apache.commons.dbcp.BasicDataSource-->
        <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"
              destroy-method="close">
            <property name="driverClassName" value="${driverClasss}"/>
            <property name="url" value="${jdbcUrl}"/>
            <property name="username" value="${username}"/>
            <property name="password" value="${password}"/>
    
            <!-- 初始化连接大小 -->
            <property name="initialSize" value="10" />
            <!-- 连接池最大使用连接数量 -->
            <property name="maxActive" value="200" />
            <!-- 连接池最小空闲 -->
            <property name="minIdle" value="10" />
            <!-- 获取连接最大等待时间 -->
            <property name="maxWait" value="60000" />
            <property name="poolPreparedStatements" value="true" />
            <property name="maxPoolPreparedStatementPerConnectionSize" value="33" />
            <!-- 用来检测有效sql -->
            <property name="validationQuery" value="${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分钟 ,延迟为1h -->
            <property name="removeAbandonedTimeout" value="3600" />
            <!-- 关闭abanded连接时输出错误日志 -->
            <property name="logAbandoned" value="true" />
            <!-- 监控数据库 -->
            <property name="filters" value="mergeStat" />
            <!-- 每隔1分钟把监控数据输出到日志中 -->
            <property name ="timeBetweenLogStatsMillis" value ="600000" />
    
        </bean>
    
        <!-- mybatis和spring完美整合,不需要mybatis的配置映射文件 -->
        <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
            <property name="dataSource" ref="dataSource"/>
            <!-- 自动扫描mapping.xml文件 PageHelp分页-->
            <!--classpath就是代表  /WEB-INF /classes/  这个路径-->
            <!--
            classpath 和 classpath* 区别:
            classpath:只会到你的class路径中查找找文件;
            classpath*:不仅包含class路径,还包括jar文件中(class路径)进行查找 &#45;&#45;&#45;&#45
            -->
            <property name="mapperLocations" value="classpath:mapping/*.xml"></property>
            <property name="configLocation" value="classpath:mybatis-config.xml" />
        </bean>
    
        <!-- DAO接口所在包名,Spring会自动查找其下的类 -->
        <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
            <property name="basePackage" value="com.spring.ssm.dao"/>
            <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
        </bean>
    
    
        <!-- (事务管理)transaction manager, use JtaTransactionManager for global tx -->
        <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
            <property name="dataSource" ref="dataSource"/>
        </bean>
    
        <!-- (事务管理)transaction manager, use JtaTransactionManager for global tx -->
        <tx:annotation-driven transaction-manager="transactionManager"/>
    
        <!--jdbc-->
        <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
            <property name="dataSource" ref="dataSource"/>
            <property name="fetchSize">
                <value>${jdbcTemplate.fetchSize}</value>
            </property>
        </bean>
    
    
    </beans>
    

    web.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xmlns="http://java.sun.com/xml/ns/javaee"
             xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
             id="WebApp_ID" version="3.0">
    
    
      <!--
      1.web-info  路径是受到保护的  不允许被直接访问
      2.普通的web项目 webappp路径下的资源是可以直接访问的除了(web-info下的)
      -->
      <display-name>ssm-demo</display-name>
    
      <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:spring.xml,
          classpath:spring-mybatis.xml</param-value>
      </context-param>
    
      <filter>
        <filter-name>encodingFilter</filter-name>
        <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
        <async-supported>true</async-supported>
        <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>
    
      <!-- Spring 容器加载 -->
      <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
      </listener>
      <listener>
        <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
      </listener>
    
      <!-- 防止spring内存溢出监听器 -->
      <listener>
        <listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class>
      </listener>
    
    
      <!-- 设置根目录 获取项目路径 -->
      <context-param>
        <param-name>webAppRootKey</param-name>
        <param-value>webapp.root</param-value>
      </context-param>
    
    
      <!--  < url-pattern>/</url-pattern>  会匹配到/login这样的路径型url(会自动处理jsp),不会匹配到模式为*.html这样的后缀型url
      < url-pattern>/*</url-pattern> 会匹配所有url:路径型的和后缀型的url(包括/login,*.jsp,*.js和*.html等)       最终都会到controller中寻找路径-->
      <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-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>
        <url-pattern>/</url-pattern>
      </servlet-mapping>
    
      <!-- 配置session超时时间,单位分钟 -->
      <session-config>
        <session-timeout>180</session-timeout>
        <cookie-config>
          <name>SESSIONID</name>
        </cookie-config>
        <tracking-mode>COOKIE</tracking-mode>
      </session-config>
    
      <context-param>
        <param-name>log4jConfigLocation</param-name>
        <param-value>/WEB-INF/classes/log4j2.xml</param-value>
      </context-param>
      <!-- 3000表示 开一条watchdog线程每60秒扫描一下配置文件的变化;这样便于日志存放位置的改变 -->
      <context-param>
        <param-name>log4jRefreshInterval</param-name>
        <param-value>3000</param-value>
      </context-param>
    
    </web-app>
    

    index.html

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
    </head>
    <body>
    <H1>Hello World</H1>
    
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:项目文件-2

          本文链接:https://www.haomeiwen.com/subject/mkntsktx.html