其他分享
首页 > 其他分享> > SSM:spring+springmvc+mybatis框架中的XML配置文件

SSM:spring+springmvc+mybatis框架中的XML配置文件

作者:互联网

一 pom.xml

我们先将需要的maven jar包添加进来(这里通过maven来管理项目)

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.zms</groupId>
  <artifactId>demo</artifactId>
  <packaging>war</packaging>
  <version>0.0.1-SNAPSHOT</version>
  <name>demo Maven Webapp</name>
  <url>http://maven.apache.org</url>
  <dependencies>
    <!--spring-boot mybatis依赖-->
    <dependency>
        <groupId>org.mybatis.spring.boot</groupId>
        <artifactId>mybatis-spring-boot-starter</artifactId>
        <version>1.3.2</version>
    </dependency>
	<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
	<dependency>
	    <groupId>org.springframework</groupId>
	    <artifactId>spring-webmvc</artifactId>
	    <version>5.2.9.RELEASE</version>
	</dependency>
    <!--添加tk-mapper依赖-->
    <dependency>
        <groupId>tk.mybatis</groupId>
        <artifactId>mapper-spring-boot-starter</artifactId>
        <version>2.0.0</version>
    </dependency>
	<!-- spring-myBatis.xml dbcp数据源 -->
	<dependency>
	    <groupId>commons-dbcp</groupId>
	    <artifactId>commons-dbcp</artifactId>
	    <version>1.4</version>
	</dependency>
	<dependency>
	    <groupId>javax.servlet</groupId>
	    <artifactId>javax.servlet-api</artifactId>
	    <version>3.1.0</version>
	    <scope>provided</scope>
	</dependency>
	<!-- sqlserver jdbc -->
    <dependency>
	  <groupId>com.microsoft.sqlserver</groupId>
	  <artifactId>sqljdbc4</artifactId>
	  <version>4.0</version>
	</dependency>
  </dependencies>
  <build>
    <finalName>demo</finalName>
  </build>
</project>

二 web.xml(每个web项目都会有的也是关联整个项目的配置)

<?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"
  version="3.0" id="WebApp_1619573110744">
	
	<context-param> <!--全局范围内环境参数初始化-->
		<param-name>contextConfigLocation</param-name>  		<!--参数名称-->
		<param-value>classpath:spring-mybatis.xml</param-value>		<!--参数取值-->
	</context-param>
	
	<!--以下配置的加载顺序:先 ServletContext >> context-param >> listener >> filter >> servlet >>  spring-->
	
	<!--监听器配置-->
	<!--例:spring监听器-->
	<listener>		<!--用来设定Listener接口-->
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class><!--定义Listener的类名称-->
	</listener>
	
	<!--过滤器配置-->
	<!--例:编码过滤器-->
	<filter>		<!-- 用来声明filter的相关设定,过滤器可以截取和修改一个Servlet或JSP页面的请求或从一个Servlet或JSP页面发出的响应-->
		<filter-name>encodingFilter</filter-name>     <!--指定filter的名字-->
		<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>	<!--定义filter的类的名称-->
		<async-supported>true</async-supported>		<!--设置是否启用异步支持-->
		<init-param><!--用来定义参数,若在Servlet可以使用下列方法来获得:String param_name=getServletContext().getInitParamter("param-name里面的值");-->
			<param-name>encoding</param-name>   <!--参数名称-->
			<param-value>UTF-8</param-value> <!--参数值-->
		</init-param>
	</filter>
	<filter-mapping><!--用来定义filter所对应的URL-->
		<filter-name>encodingFilter</filter-name>     <!--指定对应filter的名字-->
		<url-pattern>/*</url-pattern>		<!--指定filter所对应的URL-->
	</filter-mapping>
	
	<!--servlet配置-->
	<servlet>		<!--用来声明一个servlet的数据 -->  
		<servlet-name>SpringMVC</servlet-name>	<!--指定servlet的名称-->
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <!--指定servlet的类名称,这里配置了前端控制器-->
		<init-param><!--用来定义参数,可有多个init-param。在servlet类中通过getInitParamenter(String name)方法访问初始化参数    -->
			<param-name>contextConfigLocation</param-name>	<!--参数名称-->
			<param-value>classpath:spring-mvc.xml</param-value>	<!--参数值-->
		</init-param>
		<load-on-startup>1</load-on-startup><!--当值为正数或零时:Servlet容器先加载数值小的servlet,再依次加载其他数值大的servlet.-->
		<async-supported>true</async-supported><!--设置是否启用异步支持-->
	</servlet>
	<servlet-mapping><!--用来定义servlet所对应的URL-->
		<servlet-name>SpringMVC</servlet-name>	<!--指定servlet的名称-->
		<url-pattern>/</url-pattern>		<!--指定servlet所对应的URL-->
	</servlet-mapping>
	
	<!--会话超时配置(单位为分钟)-->
	<session-config><!--如果某个会话在一定时间未被访问,则服务器可以扔掉以节约内存-->
		<session-timeout>120</session-timeout>
	</session-config>
	
	<!--MIME类型配置  -->
	<mime-mapping><!--设定某种扩展名的文件用一种应用程序来打开的方式类型,当该扩展名文件被访问的时候,浏览器会自动使用指定应用程序来打开-->
		<extension>*.ppt</extension>			<!--扩展名名称-->
		<mime-type>application/mspowerpoint</mime-type>			<!--MIME格式-->
	</mime-mapping>
	
	<!--欢迎页面配置 -->
	<welcome-file-list><!--定义首页列单.-->
		<welcome-file>/index.jsp</welcome-file>	<!--用来指定首页文件名称.我们可以用<welcome-file>指定几个首页,而服务器会依照设定的顺序来找首页.-->
		<welcome-file>/index.html</welcome-file>
	</welcome-file-list>
</web-app>

三 spring-mvc.xml (springmvc的一些相关配置)

<?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:mvc="http://www.springframework.org/schema/mvc"
    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-4.1.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx-4.1.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop-4.1.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-4.1.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd">
   
   <!-- 1、配置映射器与适配器 -->
   <mvc:annotation-driven/><!-- 访问控制器里的方法 -->
   <mvc:resources mapping="/javascript/**" location="/static_resources/javascript/"/>  
   <mvc:resources mapping="/styles/**" location="/static_resources/css/"/>  
   <mvc:resources mapping="/images/**" location="/static_resources/images/"/> 
   <mvc:default-servlet-handler />
   
   <!-- 2、视图解析器 -->
   <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
     <property name="prefix" value="/"/>
     <property name="suffix" value=".jsp"/>
   </bean>
   
   <!-- 3、自动扫描该包,使SpringMVC认为包下用了@controller注解的类是控制器  -->
   <context:component-scan base-package="com.zms.controller"/>
   
</beans>

四 spring-mybatis.xml (mybatis的相关配置)

<?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-4.1.xsd
		http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx-4.1.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop-4.1.xsd
        http://www.springframework.org/schema/context
		http://www.springframework.org/schema/context/spring-context-4.1.xsd ">
		
  <!--1 自动扫描 将标注Spring注解的类自动转化Bean-->
  <context:component-scan base-package="com.zms" />
  
  <!--2 加载数据资源属性文件 -->
  <bean id="propertyConfigurer"
    class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="location" value="classpath:jdbc.properties" />
  </bean>
  
  <!-- 3 配置数据源 -->
  <bean id="dataSource" class="org.apache.commons.dbcp.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}" />
    <!-- 初始化连接大小 -->
    <property name="initialSize" value="${proxool.minimumConnectionCount}"></property>
    <!-- 连接池最大数量 -->
    <property name="maxActive" value="${proxool.maximumConnectionCount}"></property>
    <!-- 连接池最大空闲 -->
    <property name="maxIdle" value="${proxool.simultaneousbuildthrottle}"></property>
    <!-- 连接池最小空闲 -->
    <property name="minIdle" value="${proxool.prototypeCount}"></property>
    <!-- 获取连接最大等待时间 -->
    <property name="maxWait" value="${proxool.maximumConnectionLifetime}"></property>
  </bean>
  
  <!-- 4   配置sessionfactory -->
  <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
    <property name="dataSource" ref="dataSource" />
    <!-- 自动扫描mapping.xml文件 -->
    <property name="mapperLocations" value="classpath:com/zms/mapping/*.xml"></property>
  </bean>
  
  <!-- 5  装配dao接口 -->
  <bean class="tk.mybatis.spring.mapper.MapperScannerConfigurer">
    <property name="basePackage" value="com.zms.dao" /> <!-- DAO接口所在包名,Spring会自动查找其下的类 -->
    <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
  </bean>
  
  <!-- 6、声明式事务管理 -->
  <bean id="transactionManager"
    class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    <property name="dataSource" ref="dataSource" />
  </bean>
</beans>

五 jdbc.properties

#sqlserver
jdbc.driver=com.microsoft.sqlserver.jdbc.SQLServerDriver
jdbc.url=jdbc\:sqlserver\://150.158.114.220\:3323;DatabaseName\=demo

jdbc.username=ZHANG_SAN
jdbc.password=123456

# 测试的SQL执行语句
proxool.houseKeepingTestSql=select 1 from dual
# 最少保持的空闲连接数 (默认2个) 
proxool.prototypeCount=2
# proxool自动侦察各个连接状态的时间间隔(毫秒),侦察到空闲的连接就马上回收,超时的销毁 默认30秒) 
proxool.hourseKeepingSleepTime=30000
# 最大活动时间(超过此时间线程将被kill,默认为5分钟) 
proxool.maximumActiveTime=5
# 连接最长时间(默认为4个小时) 
proxool.maximumConnectionLifetime=14400000
# 最小连接数 (默认2个) 
proxool.minimumConnectionCount=2
# 最大连接数 (默认5个) 
proxool.maximumConnectionCount=50
# 一次可建立的最大连接数
proxool.simultaneousbuildthrottle=50
# 别名 
proxool.alias=pool_dbname

标签:XML,xml,jdbc,配置文件,springmvc,spring,mybatis,org,proxool
来源: https://blog.csdn.net/weixin_35912109/article/details/116237261