spring+springMVC+ibatis基本配置文件

1.创建动态web程序,并且修改编译路径改为WEB-INFO目录下
buildpath->source标签 中修改
2.添加所有jar包在lib目录下方,并且在buildpath中也添加。防止lib中的jar包出现错误

3.创建mvc.xml和ibatis的配置文件

mvc.xml中对一个controller的注解进行扫描,并且配置springmvc的视图渲染

<!-- SpringMVC配置 -->
	
	<!-- 通过component-scan 让Spring扫描org.swinglife.controller下的所有的类,让Spring的代码注解生效 -->
	<context:component-scan base-package="controller"></context:component-scan>
	
	<!-- 配置SpringMVC的视图渲染器, 让其前缀为:/ 后缀为.jsp  将视图渲染到/page/<method返回值>.jsp中 -->
	<beans:bean
		class="org.springframework.web.servlet.view.InternalResourceViewResolver"
		p:prefix="/page/" p:suffix=".jsp">
	</beans:bean>

SqlMapConfig.xml

<?xml version="1.0" encoding="UTF-8" ?>  
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"  "http://www.ibatis.com/dtd/sql-map-config-2.dtd">  
<sqlMapConfig> 
    <sqlMap resource="sqlMap_User.xml" />  //加载映射文件
</sqlMapConfig>

映射文件

<?xml version="1.0" encoding="UTF-8"?>  
<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-2.dtd">  

<sqlMap namespace="Test">  
 //写自己的sql操作
    <statement id="select_all_user"  
        resultClass="com.lu.pojo.User">  
        select * from user 
        where is_delete = 0
        order by id  
    </statement>  
</sqlMap>

4.创建spring的root-context.xml

创建spring的datasource,而不使用ibatis的datasource,将连接数据库的驱动信息等放入db.properties内,在spring的配置文件中读取。
spring的service层注解配置在当前配置文件中

<!--加载配置文件  -->
 	<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" id="propertyPlaceholderConfigurer">
 		<property name="locations">
 		<list>
 			<value>classpath:db.properties</value>
 		</list>
 		</property>
 	</bean>
 	
 	<!-- 创建spring的datasource -->
	<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
		<property name="driverClassName" value="${driver}"></property>
		<property name="url" value="${url}"></property>
		<property name="username" value="${username}"></property>
		<property name="password" value="${password}"></property>
	</bean>

连接数据库文件db.properties:

driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/ibatis_demo?characterEncoding=utf8
username=root
password=root

总的spring配置文件如下:

<?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:jaxws="http://cxf.apache.org/jaxws"
	xsi:schemaLocation="http://cxf.apache.org/jaxws 
	http://cxf.apache.org/schemas/jaxws.xsd
		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/tx 
		http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
		http://cxf.apache.org/jaxws 
		http://cxf.apache.org/schemas/jaxws.xsd">
	<!-- Root Context: defines shared resources visible to all other web components -->
	<context:component-scan base-package="serviceimpl"></context:component-scan>
	<context:component-scan base-package="ws"></context:component-scan>
	
	<!--加载配置文件  -->
 	<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" id="propertyPlaceholderConfigurer">
 		<property name="locations">
 		<list>
 			<value>classpath:db.properties</value>
 		</list>
 		</property>
 	</bean>
 	<!-- 创建spring的datasource -->
	<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
		<property name="driverClassName" value="${driver}"></property>
		<property name="url" value="${url}"></property>
		<property name="username" value="${username}"></property>
		<property name="password" value="${password}"></property>
	</bean>
	
	<!-- spring加载ibatis的配置文件 -->
	<bean id="sqlMapClient" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
		<property name="configLocation" value="classpath:SqlMapConfig.xml"></property>
		<property name="dataSource" ref="dataSource"></property>
	</bean>
	
	<bean class="org.springframework.orm.ibatis.SqlMapClientTemplate" id="sqlMapClientTemplate">
		<property name="sqlMapClient" ref="sqlMapClient"></property>
	</bean>
</beans>

5.修改web.xml

需要在web.xml中配置mvc的DispatcherServlet拦截相应的请求

<!-- 配置Spring MVC DispatcherServlet -->
	<servlet>
		<servlet-name>MVC</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<!-- 初始化参数 -->
		<init-param>
			<!-- 加载SpringMVC的xml到 spring的上下文容器中 -->
			<param-name>contextConfigLocation</param-name>
			<param-value>
				classpath:mvc.xml
			</param-value>
		</init-param>
		<load-on-startup>1</load-on-startup>
	</servlet>
	<!-- 配置DispatcherServlet所需要拦截的 url -->
	<servlet-mapping>
		<servlet-name>MVC</servlet-name>
		<url-pattern>*.do</url-pattern>
	</servlet-mapping>

第二步配置spring配置文件的路径

<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>classpath:root-context.xml</param-value>
	</context-param>

第三步配置监听,监听spring上下文容器

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

总的web.xml如下:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>springMVC_firstdemo_20181123</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  <!-- 监听spring上下文容器 -->
	<listener>
		<listener-class>
			org.springframework.web.context.ContextLoaderListener
		</listener-class>
	</listener>
	
	<!-- 加载spring的xml配置文件到 spring的上下文容器中 -->
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>classpath:root-context.xml</param-value>
	</context-param>
  <!-- 配置Spring MVC DispatcherServlet -->
	<servlet>
		<servlet-name>MVC</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<!-- 初始化参数 -->
		<init-param>
			<!-- 加载SpringMVC的xml到 spring的上下文容器中 -->
			<param-name>contextConfigLocation</param-name>
			<param-value>
				classpath:mvc.xml
			</param-value>
		</init-param>
		<load-on-startup>1</load-on-startup>
	</servlet>
 
	<!-- 配置DispatcherServlet所需要拦截的 url -->
	<servlet-mapping>
		<servlet-name>MVC</servlet-name>
		<url-pattern>*.do</url-pattern>
	</servlet-mapping>
</web-app>

6.spring中常使用的注解

@Controller 配置在mvc的配置文件中
@Service 配置在service层类上
参数注入注解能使用三种
//三种注入bean的方法
1.Resource 按变量名字注入和bean的名字一样
2.Autowire 自动注入,依据变量类型将 bean注入,但是同种类型只能有一种
3.Qulifira(”注入bean的名字”)

猜你喜欢

转载自blog.csdn.net/luluohua/article/details/84567020