SSM框架快速整合实例——学生查询
一、快速准备
ssm 框架即 spring 框架、springmvc 框架、mybatis 框架,关于这几个框架的基础和入门程序,我前面已经写过几篇文章作为基础和入门介绍了。这里再简单的介绍一下:
1.spring
spring 框架是 java 应用最广的框架,它的成功来源于理念,而不是技术本身,它的理念包括 ioc (控制反转) 和 a面向切面编程)。spring框架是个轻量级的java ee框架,所谓轻量级,是指不依赖于容器就能运行的。简单来说,spring是一个轻量级的控制反转(ioc)和面向切面(aop)的容器框架。
2.spring mvc
作用于web层,相当于controller,与struts中的action一样,都是用来处理用户请求的。同时,相比于struts2来说,更加细粒度,它是基于方法层面的,而struts是基于类层面的。spring mvc 分离了控制器、模型对象、分派器以及处理程序对象的角色,这种分离让它们更容易进行定制。
3.mybatis
mybatis 本是apache的一个开源项目ibatis, 2010年这个项目由apache software foundation 迁移到了google code,并且改名为mybatis 。mybatis 是一款优秀的持久层框架,它支持定制化 sql、存储过程以及高级映射。mybatis 避免了几乎所有的 jdbc 代码和手动设置参数以及获取结果集。mybatis 可以使用简单的 xml 或注解来配置和映射原生信息,将接口和 java 的 pojos(plain old java objects,普通的 java对象)映射成数据库中的记录。
如果已经陆续学习过 ssm 框架相关知识的,可以忽略掉这一部分,直接看下面的内容。
二、快速创建项目
鉴于 jar 包依赖于管理的方便,我们使用 maven 进行项目的管理和开发,所以这一步我们使用 idea 快速创建一个 maven 项目,关于如何使用 idea 快速创建 maven 项目,这里就不进行过多赘述了,大家可以参考下面这篇文章:
三、快速配置 jar 包依赖
maven 项目创建完成后,快速打开并配置 pom.xml
文件,具体配置如下:
<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.ssm.example</groupid>
<artifactid>ssmdemo</artifactid>
<packaging>war</packaging>
<version>0.0.1-snapshot</version>
<name>ssmdemo maven webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<!-- 配置 springmvc 依赖包 -->
<dependency>
<groupid>org.springframework</groupid>
<artifactid>spring-webmvc</artifactid>
<version>4.3.7.release</version>
</dependency>
<!-- spring jdbc 依赖包-->
<dependency>
<groupid>org.springframework</groupid>
<artifactid>spring-jdbc</artifactid>
<version>4.3.7.release</version>
</dependency>
<!-- spring aop 依赖包-->
<dependency>
<groupid>org.springframework</groupid>
<artifactid>spring-aspects</artifactid>
<version>4.3.7.release</version>
</dependency>
<!--mybatis 依赖包-->
<dependency>
<groupid>org.mybatis</groupid>
<artifactid>mybatis</artifactid>
<version>3.4.2</version>
</dependency>
<!-- spring 整合 mybatis 依赖包 -->
<dependency>
<groupid>org.mybatis</groupid>
<artifactid>mybatis-spring</artifactid>
<version>1.3.1</version>
</dependency>
<!-- mysql 驱动依赖包 -->
<dependency>
<groupid>mysql</groupid>
<artifactid>mysql-connector-java</artifactid>
<version>5.1.41</version>
</dependency>
<!-- c3p0 数据源依赖包 -->
<dependency>
<groupid>c3p0</groupid>
<artifactid>c3p0</artifactid>
<version>0.9.1</version>
</dependency>
<!-- jstl 依赖包 -->
<dependency>
<groupid>jstl</groupid>
<artifactid>jstl</artifactid>
<version>1.2</version>
</dependency>
<!-- servletapi 依赖包-->
<dependency>
<groupid>javax.servlet</groupid>
<artifactid>javax.servlet-api</artifactid>
<version>3.0.1</version>
<scope>provided</scope>
</dependency>
<!-- junit 测试依赖包 -->
<dependency>
<groupid>junit</groupid>
<artifactid>junit</artifactid>
<version>3.8.1</version>
</dependency>
</dependencies>
<!-- 如果不添加此节点,mybatis 的 mapper.xml 文件都会被漏掉 -->
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>
</project>
四、快速配置编码过滤和资源加载
打开 web.xml
文件,快速配置开启 spring 、springmvc 编码过滤以及静态资源加载,具体配置代码如下:
<web-app>
<display-name>archetype created web application</display-name>
<!-- 启动spring的容器 -->
<context-param>
<param-name>contextconfiglocation</param-name>
<param-value>classpath:applicationcontext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.contextloaderlistener</listener-class>
</listener>
<!-- springmvc的前端控制器,拦截所有请求 -->
<servlet>
<servlet-name>mvc-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.dispatcherservlet</servlet-class>
<init-param>
<param-name>contextconfiglocation</param-name>
<param-value>classpath:springmvc.xml</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
<url-pattern>/</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>
<!-- 加载静态资源 -->
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.js</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.css</url-pattern>
</servlet-mapping>
</web-app>
五、快速配置 spring 配置文件
在 resources
文件夹下新建 applicationcontext.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:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemalocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">
<!-- 加载资源文件 -->
<context:property-placeholder location="classpath:db.properties"/>
<!-- 配置 c3p0 数据源 -->
<bean id="datasource" class="com.mchange.v2.c3p0.combopooleddatasource">
<property name="user" value="${jdbc.user}"></property>
<property name="password" value="${jdbc.password}"></property>
<property name="driverclass" value="${jdbc.driverclass}"></property>
<property name="jdbcurl" value="${jdbc.jdbcurl}"></property>
<property name="initialpoolsize" value="5"></property>
<property name="maxpoolsize" value="10"></property>
</bean>
<!-- 配置 mybatis sqlsessionfactory -->
<bean id="sqlsessionfactory" class="org.mybatis.spring.sqlsessionfactorybean">
<!-- 指定 mybatis 数据源 -->
<property name="datasource" ref="datasource"/>
<!-- 指定 mybatis mapper 映射文件位置 -->
<property name="mapperlocations" value="classpath:com/ssm/example/dao/*.xml"/>
<!-- 指定 mybatis 全局配置文件的位置 -->
<property name="configlocation" value="classpath:mybatis-config.xml"></property>
</bean>
<!-- 扫描 mybatis 的 mapper 接口 -->
<bean class="org.mybatis.spring.mapper.mapperscannerconfigurer">
<!--扫描所有 dao 接口,加入到 ioc 容器中 -->
<property name="basepackage" value="com.ssm.example.dao"/>
</bean>
<!-- 配置事务管理器 -->
<bean id="transactionmanager" class="org.springframework.jdbc.datasource.datasourcetransactionmanager">
<!-- 指定数据源 -->
<property name="datasource" ref="datasource"></property>
</bean>
<!-- 配置事务增强 -->
<tx:advice id="txadvice" transaction-manager="transactionmanager">
<tx:attributes>
<!-- 配置所有方法都是事务方法 -->
<tx:method name="*"/>
<tx:method name="get*" read-only="true"/>
</tx:attributes>
</tx:advice>
<!-- 开启基于注解的事务 -->
<aop:config>
<!-- 切入点表达式 -->
<aop:pointcut expression="execution(* com.ssm.example.service.impl.*.*(..))" id="txpoint"/>
<!-- 配置事务增强 -->
<aop:advisor advice-ref="txadvice" pointcut-ref="txpoint"/>
</aop:config>
</beans>
六、快速配置数据库连接信息
在 resources
文件夹下新建 db.properties
文件,配置数据库连接相关信息,具体代码配置如下:
jdbc.jdbcurl=jdbc:mysql://localhost:3306/ssm_example?useunicode=true&characterencoding=utf-8
jdbc.driverclass=com.mysql.jdbc.driver
jdbc.user=root
jdbc.password=root
七、快速配置数据库操作辅助信息
在 resources
文件夹下新建 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="stdout_logging" />
</settings>
<typealiases>
<!-- 指定一个包名,mybatis会在包名下搜索需要的javabean-->
<package name="com.ssm.example.entity"/>
</typealiases>
</configuration>
八、快速配置 springmvc 注解扫描和视图解析器
在 resources
文件夹下新建 springmvc.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:mvc="http://www.springframework.org/schema/mvc"
xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">
<!-- 启用 springmvc 注解驱动 -->
<mvc:annotation-driven />
<!-- 扫描业务代码 -->
<context:component-scan base-package="com.ssm.example"></context:component-scan>
<!-- 配置视图解析器 -->
<bean class="org.springframework.web.servlet.view.internalresourceviewresolver">
<property name="prefix" value="/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
</beans>
九、快速新建数据表
新建 mysql 数据库,快速新建数据表 ssm_example
,具体建表代码如下:
drop table if exists `student`;
create table `student` (
`id` int(11) not null auto_increment,
`name` varchar(255) character set utf8 collate utf8_general_ci null default null,
`gender` varchar(255) character set utf8 collate utf8_general_ci null default null,
`email` varchar(255) character set utf8 collate utf8_general_ci null default null,
`tel` varchar(255) character set utf8 collate utf8_general_ci null default null,
`cla` varchar(255) character set utf8 collate utf8_general_ci null default null,
primary key (`id`) using btree
) engine = innodb auto_increment = 6 character set = utf8 collate = utf8_general_ci row_format = compact;
insert into `student` values (1, '孔乙己', '男', 'kongyiji@163.com', '13509856897', '计算机1班');
insert into `student` values (2, '阿强', '女', 'aqiang@126.com', '12345678909', '软件工程');
insert into `student` values (3, '阿福', '男', 'afu@12345.com', '13657898762', '数学专业');
insert into `student` values (4, '阿霞', '女', '12345@qq.com', '12378645987', '英语专业');
insert into `student` values (5, '指南者', '男', 'compassblog@gmail.com', '13587690873', '打杂搬砖专业');
set foreign_key_checks = 1;
十、快速新建实体类
快速新建实体类 student.java
,具体代码如下:
package com.ssm.example.entity;
public class student {
private int id;
private string name;
private string gender;
private string email;
private string tel;
private string cla;
public int getid() {
return id;
}
public void setid(int id) {
this.id = id;
}
public string getname() {
return name;
}
public void setname(string name) {
this.name = name;
}
public string getgender() {
return gender;
}
public void setgender(string gender) {
this.gender = gender;
}
public string getemail() {
return email;
}
public void setemail(string email) {
this.email = email;
}
public string gettel() {
return tel;
}
public void settel(string tel) {
this.tel = tel;
}
public string getcla() {
return cla;
}
public void setcla(string cla) {
this.cla = cla;
}
}
十一、快速书写业务代码
快速新建 stuentcontroller.java
控制类,具体代码如下:
package com.ssm.example.controller;
import java.util.list;
import com.ssm.example.entity.student;
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.stereotype.controller;
import org.springframework.web.bind.annotation.requestmapping;
import org.springframework.web.servlet.modelandview;
import com.ssm.example.service.studentservice;
@controller
public class studentcontroller {
@autowired
private studentservice studentservice;
/**
* 查找所有学生
* @return
*/
@requestmapping(value="/findall")
public modelandview test(){
list<student> list = studentservice.findall();
modelandview modelandview = new modelandview();
modelandview.setviewname("index");
modelandview.addobject("list", list);
return modelandview;
}
}
快速新建 studentservice.java
接口,代码如下:
package com.ssm.example.service;
import java.util.list;
import com.ssm.example.entity.student;
public interface studentservice {
public list<student> findall();
}
快速新建 studentserviceimpl.java
类实现接口,具体代码如下:
package com.ssm.example.service.impl;
import java.util.list;
import com.ssm.example.dao.studentdao;
import com.ssm.example.entity.student;
import com.ssm.example.service.studentservice;
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.stereotype.service;
@service
public class studentserviceimpl implements studentservice {
@autowired
private studentdao studentdao;
public list<student> findall() {
// todo auto-generated method stub
return studentdao.findall();
}
}
快速新建 dao 接口 studentdao.java
,具体代码如下:
package com.ssm.example.dao;
import java.util.list;
import com.ssm.example.entity.student;
public interface studentdao {
public list<student> findall();
}
快速新建 dao 接口代理文件 studentdao.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.ssm.example.dao.studentdao">
<resultmap type="student" id="studentmap">
<id property="id" column="id"/>
<result property="name" column="name"/>
<result property="gender" column="gender"/>
<result property="email" column="email"/>
<result property="tel" column="tel"/>
<result property="cla" column="cla"/>
</resultmap>
<select id="findall" resultmap="studentmap">
select * from student
</select>
</mapper>
十二、新建访问页面
快速新建访问页面 index.jsp
,并且页面使用 bootstrap 框架作轻度渲染,具体代码如下:
<%@ page language="java" contenttype="text/html; charset=utf-8"
pageencoding="utf-8"%>
<%@ page iselignored="false" %>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!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>学生列表</title>
<link rel="stylesheet" href="${pagecontext.request.contextpath}/static/bootstrap-3.3.7-dist/css/bootstrap.min.css">
</head>
<body>
<br><br><br>
<div class="container" align="center">
<div class="row">
<div class="col-md-12">
<h1>ssm 框架快速整合实例--学生查询</h1>
</div>
</div>
<br>
<div class="row">
<div class="col-md-12">
<table class="table table-hover" id="emps_table">
<thead>
<tr>
<th>
<input type="checkbox" id="check_all"/>
</th>
<th>编号</th>
<th>姓名</th>
<th>性别</th>
<th>电子邮箱</th>
<th>联系电话</th>
<th>班级</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<c:foreach items="${list }" var="student">
<tr>
<td><input type='checkbox' class='check_item'/></td>
<td>${student.id }</td>
<td>${student.name }</td>
<td>${student.gender }</td>
<td>${student.email }</td>
<td>${student.tel }</td>
<td>${student.cla }</td>
<td>
<button class="btn btn-primary btn-sm edit_btn">
<span class="glyphicon glyphicon-pencil">编辑</span>
</button>
<button class="btn btn-danger btn-sm delete_btn">
<span class="glyphicon glyphicon-trash">删除</span>
</button>
</td>
</tr>
</c:foreach>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>
十三、快速进行测试
到这里,ssm 框架整合程序就已经书写完毕,部署并启动 tomcat 服务器,然后到浏览器地址栏测试,结果如下: