本文内容:
1、下载MyBatis与Spring整合jar包:
https://github.com/mybatis/spring
2、创建一个Java工程,导入相应jar包
3、配置Spring配置文件:
其实MyBatis与Spring整合就是Spring配置文件中添加了一些代码,用来代替MyBatis配置文件中的部分代码的作用。
这里引用了初识MyBatis中的mybatis_config.xml和area.xml中的配置,下面是初识MyBatis的链接: https://blog.csdn.net/THG_TERCEL/article/details/97020783
<?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:mybatis-spring="http://mybatis.org/schema/mybatis-spring"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://mybatis.org/schema/mybatis-spring http://mybatis.org/schema/mybatis-spring-1.2.xsd
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-4.3.xsd">
<bean id="dataSource" class="com.zaxxer.hikari.HikariDataSource" destroy-method="close"> <!-- 配置数据库信息,这个bean中代码的作用相当于mybatis_config.xml中配置数据库新的那段代码的作用 -->
<property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
<property name="jdbcUrl" value="jdbc:mysql:127.0.0.1:3306/test"></property>
<property name="username" value="root"></property>
<property name="password" value="root"></property>
</bean>
<mybatis-spring:scan base-package="com.zzu"/> <!--扫描接口,并为其创建动态类,而且生成动态对象-->
<bean class="org.mybatis.spring.SqlSessionFactoryBean"> <!-- 引入上面配置的数据库信息,引入mybatis_config.xml和 sql/*.xml中的配置信息;这个bean也代替了mybatis_config.xml中mappers标签起到的作用-->
<property name="dataSource" value="#{dataSource}"></property>
<property name="configLocation" value="classpath:mybatis_config.xml"></property>
<property name="mapperLocations" value="classpath:sql/*.xml"></property> <!--我创建了一个sql包,将area.xml放了进去,这里value中使用了通配符*,目的是可以使用sql包中所有的xml文件-->
</bean>
<context:component-scan base-package="com.zzu"></context:component-scan> <!-- 扫描标注有Controller等四个注解的类,并为其创建对象 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" p:prefix="/WEB-INF/view/" p:suffix=".jsp"></bean> <!-- 配置jsp文件的前后缀,方便Controller类的方法返回jsp文件 -->
</beans>
<!-- 这个文件配置完,mybatis_config.xml中配置的数据库连接信息还有mappers就不需要了 -->
Spring文件配置完之后,可以在测试类中测试一下
package com.zzu.test;
import java.io.IOException;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.zzu.area.IAreaDao;
public class Test {
public static void main(String[] args) throws IOException {
ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("application.xml");
IAreaDao areaDao = applicationContext.getBean(IAreaDao.class); //创建的动态对象
System.out.println(areaDao.getClass().getName());
System.out.println(areaDao.getName("522732"));
applicationContext.close();
}
}
//结果:com.sun.proxy.$Proxy12
// 三都水族自治县
//测试结果正确,配置完成
下面顺带配置了web.xml,搭建了SpringMVC环境:
<?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_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>saturn</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>DispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:application.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>DispatcherServlet</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
</web-app>
4、一个例子:
例子中有一个login.jsp文件 一个index.jsp文件 一个UserInfoController.java文件,执行过程是,在网页上输入网址进入index.jsp文件中,然后index.jsp跳到UserInfoController.java中调用标有RequestMapping("/login.do")的方法,然后返回login.jsp,显示其中的内容,下面是文件代码:
index.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<script type="text/javascript">
location.href="./userinfo/login.do";
</script>
login.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
登录
</body>
</html>
UserInfoController.java
package com.zzu.userinfo;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@RequestMapping("/userinfo")
public class UserInfoController {
@RequestMapping("/login")
public String login() {
return"userinfo/login";
}
}
下面是文件所处位置:(将login.jsp文件放到WEB-INF中是为了,网页的安全。在WEB-INF中的jsp文件,无法直接访问,不信你可以试试!)
使用Tom-cat发布之后,输入网址:http://127.0.0.1:8000/saturn/ 网页会自动跳转到:http://127.0.0.1:8000/saturn/userinfo/login.do 网页显示 登陆 二字。(在我发布的情况下,可以访问到)