SpringMVC:视图层,界面层,负责接收请求,显示处理结果的。
Spring:业务层,管理service,dao,工具类对象的。
MyBatis:持久层, 访问数据库的
用户发起请求–SpringMVC接收–Spring中的Service对象–MyBatis处理数据
SSM整合也叫做SSI (IBatis也就是mybatis的前身), 整合中有容器。
service,dao对象定义在spring的配置文件中,让spring管理这些对象。
springmvc容器和spring容器是有关系的,关系已经确定好了
springmvc容器是spring容器的子容器, 类似java中的继承。 子可以访问父的内容
在子容器中的Controller可以访问父容器中的Service对象, 就可以实现controller使用service对象
3.写web.xml
1)注册DispatcherServlet ,目的:1.创建springmvc容器对象,才能创建Controller类对象。
2.创建的是Servlet,才能接受用户的请求。
2)注册spring的监听器:ContextLoaderListener,目的: 创建spring的容器对象,才能创建service,dao等对象。
3)注册字符集过滤器,解决post请求乱码的问题
4.创建包, Controller包, service ,dao,实体类包名创建好
5.写springmvc,spring,mybatis的配置文件
1)springmvc配置文件
2)spring配置文件
3)mybatis主配置文件
4)数据库的属性配置文件
6.写代码, dao接口和mapper文件, service和实现类,controller, 实体类。
7.写jsp页面
<dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <!--servlet依赖--> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> <scope>provided</scope> </dependency> <!-- jsp依赖 --> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <version>2.2.1-b03</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.2.5.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>5.2.5.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>5.2.5.RELEASE</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.9.0</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.9.0</version> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> <version>1.3.1</version> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.1</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.11</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.1.12</version> </dependency>
<resources> <resource> <directory>src/main/java</directory><!--所在的目录--> <includes><!--包括目录下的.properties,.xml 文件都会扫描到--> <include>**/*.properties</include> <include>**/*.xml</include> </includes> <filtering>false</filtering> </resource> </resources> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins>
create table student ( id int auto_increment primary key, name varchar(100) null, age int null );
启动Spring容器,注册Spring监听器。
注册spring的监听器:ContextLoaderListener,目的: 创建spring的容器对象,才能创建service,dao等对象。
<context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:conf/applicationContext.xml</param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>
<servlet> <servlet-name>myweb</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:conf/dispatcherServlet.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>myweb</servlet-name> <url-pattern>*.do</url-pattern> </servlet-mapping>
<filter> <filter-name>CharacterEncodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>utf-8</param-value> </init-param> <init-param> <param-name>forceRequestEncoding</param-name> <param-value>true</param-value> </init-param> <init-param> <param-name>forceResponseEncoding</param-name> <param-value>true</param-value> </init-param> </filter> <filter-mapping> <filter-name>CharacterEncodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
dispatcherServlet.xml是Springmvc的配置文件
<context:component-scan base-package="com.xz.controller"></context:component-scan>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/"></property> <property name="suffix" value=".jsp"></property> </bean>
<mvc:annotation-driven/>
applicationContext.xml是Spring的配置文件,这里主要配置和业务逻辑有关的
<context:property-placeholder location="classpath:conf/dbconfig.properties"></context:property-placeholder> <bean id="pooledDataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close"> <property name="url" value="${jdbc.jdbcUrl}"></property> <property name="username" value="${jdbc.user}"></property> <property name="password" value="${jdbc.password}"></property> </bean>
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <!--指定mybatis全局配置文件的位置--> <property name="configLocation" value="classpath:conf/mybatis.xml"></property> <property name="dataSource" ref="pooledDataSource"></property> </bean>
提示:
<property name="mapperLocations" value="classpath:mapper/*.xml"></property>
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <!--扫描所有dao接口的实现,加入到ioc容器中 --> <property name="basePackage" value="com.xz.dao"></property> <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property> </bean>
**提示:**这里的sqlSessionFactory是和步骤二的 id="sqlSessionFactory"对应。
<context:component-scan base-package="com.xz.service"></context:component-scan>
起别名
<typeAliases> <!-- 一般是实体类所在的包名,不是也可以--> <package name="com.xz.domain"/>
name:是包名,这个包中的所有mapper.xml一次都能加载
使用package的要求:
1、mapper文件的名称和dao接口名完全一样,包括大小写
2、mapper文件和dao接口必须在同一目录。
</typeAliases> <mappers> <package name="com.xz.dao"/> </mappers>
创建student类
public class Student { private Integer id; private String name; private Integer age; } get/set.....
创建StudentDao,实现方法的接口。
public interface StudentDao { int insertStudent(Student student); List<Student> selectStudent(); }
在和StudentDao同一包下,创建Mapper,用于在后端实现sql语句,实现StudentDao方法。
文件名是:StudentDao.xml,此文件名必须和dao接口一致。
<mapper namespace="com.xz.dao.StudentDao"> <select id="selectStudent" resultType="com.xz.domain.Student"> select id,name,age from student order by id desc </select> <insert id="insertStudent"> insert into student(name,age) values(#{name},#{age}) </insert> </mapper>
public interface StudentService { int addStudent(Student student); List<Student> findStudent(); }
@Service public class StudentServiceImpl implements StudentService { //引用类型的自动注入@Autowired,@Resource都行 @Resource private StudentDao studentDao; @Override public int addStudent(Student student) { int nums = studentDao.insertStudent(student); return nums; } @Override public List<Student> findStudent() { return studentDao.selectStudent(); } }
用于和前段进行交互,传递数据。
@Controller @RequestMapping("/student") public class StudentController { @Autowired private StudentService service; //注册学生 @RequestMapping("/addStudent.do") public ModelAndView addStudent(Student student) { ModelAndView mv = new ModelAndView(); String tips = "注册失败"; //调用service处理student int nums = service.addStudent(student); if (nums > 0) { //注册成功 tips="学生【"+student.getName()+"】 注册成功!"; } //添加数据 mv.addObject("tips", tips); //指定结果页面 mv.setViewName("result"); return mv; } }
<% String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + request.getContextPath() + "/"; %>
<base href="<%=basePath%>" />
<div align="center"> <p>SSM整合例子</p> <img src="images/main.png"> <table> <tr> <td><a href="addStudent.jsp">注册学生</a></td> </tr> <tr> <td><a href="listStudent.jsp">浏览学生</a></td> </tr> </table> </div>
index.jsp页面的跳转页面,用于用户输入数据。
主要代码如下:
<div align="center"> <form action="student/addStudent.do" method="post"> <table> <tr> <td>姓名:</td> <td><input type="text" name="name"></td> </tr> <tr> <td>年龄:</td> <td><input type="text" name="age"></td> </tr> <tr> <td> </td> <td><input type="submit" value="注册"></td> </tr> </table> </form> </div>
用于后端代码,处理请求完成后,跳转显示处理结果。
result.jsp结果页面,注册结果:${tips}