简介
本文章提供了详细的搭建过程,供大家参考学习。
案例Demo已托管至Github,详情查看SSM Demo
另附上本人基于SSM搭建的高效便捷开发框架,上手就能用:
- 单节点项目:详情参考使用Maven构建 基于SpringMVC+Spring+Mybatis(SSM)高效便捷开发框架
- 分布式项目:详情参考使用Maven构建 整合Dubbo+Zookeeper+SpringMVC+Spring+MyBatis支持分布式 高效便捷开发框架
环境
- MacOS Sierra / Windows 7
- MySql 5.7
- JDK 1.8
- Eclipse 4.6.1
- Maven 3.3.9
- Jetty 9.4.6.v20170531 / Tomcat 9.0
技术选型
名称 | 描述 | 版本号 | 网址 |
---|---|---|---|
Spring MVC | MVC框架 | 4.3.10.RELEASE | https://docs.spring.io/spring/docs/current/spring-framework-reference/web.html#mvc |
Spring Framework | 容器 | 4.3.10.RELEASE | http://projects.spring.io/spring-framework/ |
MyBatis | ORM/持久层框架 | 3.4.5 | http://www.mybatis.org/mybatis-3/zh/index.html |
AspectJ | 面向切面的框架 | 1.8.10 | http://www.eclipse.org/aspectj/ |
Druid | 数据库连接池 | 1.1.3 | https://github.com/alibaba/druid |
Jackson | json解析器 | 2.9.1 | https://github.com/FasterXML/jackson |
Logback | 日志组件 | 1.2.3 | https://logback.qos.ch |
Maven | 项目构建管理 | 3.3.9 | http://maven.apache.org/ |
搭建步骤
一、创建Maven项目
具体操作如下图
新建好的项目会有报错提示,别着急,在项目上右键选择 Java EE Tools > Generate Deployment Descriptor Stub
接下来在项目上右键选择最后一项 Properties > Project Facets
到这里一个Maven的Web项目就创建好了
二、在pom.xml中添加依赖包
4.0.0
com.frame
ssm
0.0.1-SNAPSHOT
war
UTF-8
4.3.11.RELEASE
1.8.10
2.9.1
1.2.3
commons-fileupload
commons-fileupload
1.3.3
commons-io
commons-io
2.5
org.apache.commons
commons-lang3
3.6
org.springframework
spring-aspects
${spring.framework.version}
org.springframework
spring-context
${spring.framework.version}
org.springframework
spring-jdbc
${spring.framework.version}
org.springframework
spring-webmvc
${spring.framework.version}
org.springframework
spring-context-support
${spring.framework.version}
org.aspectj
aspectjweaver
${aspectj.version}
org.aspectj
aspectjrt
${aspectj.version}
org.mybatis
mybatis
3.4.5
org.mybatis
mybatis-spring
1.3.1
com.alibaba
druid
1.1.3
mysql
mysql-connector-java
5.1.44
com.fasterxml.jackson.core
jackson-databind
${jackson.version}
javax.servlet
javax.servlet-api
3.1.0
javax.servlet
jstl
1.2
ch.qos.logback
logback-classic
${logback.version}
三、配置web.xml文件
ssm
characterEncodingFilter
org.springframework.web.filter.CharacterEncodingFilter
encoding
UTF-8
forceRequestEncoding
true
characterEncodingFilter
/*
springMVC
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
classpath:spring-mvc.xml
1
springMVC
/
contextConfigLocation
classpath:applicationContext.xml
org.springframework.web.context.ContextLoaderListener
views/index.jsp
四、在src/main/resources下创建spring配置文件
创建applicationContext.xml配置如下
classpath:com/frame/**/*Mapper.xml
classpath:mybatis/**/*Mapper.xml
创建spring-mvc.xml配置如下
text/html; charset=UTF-8
application/json;charset=UTF-8
text/html; charset=UTF-8
application/json;charset=UTF-8
五、在src/main/resources下创建mybatis/**/*Mapper.xml模板
用于撰写mybatis执行sql的语句
五、在src/main/java下创建com.frame.*测试类
创建service接口
package com.frame.service;
public interface DemoService {
void test();
}
创建service业务层实现类
package com.frame.service.impl;
import org.mybatis.spring.SqlSessionTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.frame.service.DemoService;
@Service("demoService")
public class DemoServiceImpl implements DemoService {
@Autowired
private SqlSessionTemplate sqlSessionTemplate;
// mybatis sql模板的命名空间
private static final String NAMESPACE = "com.frame.mapper.DemoMapper";
@Override
public void test() {
System.out.println("返回查询结果集 -> " + sqlSessionTemplate.selectList(NAMESPACE + ".getTest")); // 查询结果集
}
}
创建controller控制器
package com.frame.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import com.frame.service.DemoService;
@Controller
public class DemoController {
@Autowired
private DemoService demoService;
@RequestMapping("/hello")
public String hello() {
System.out.println("执行hello控制器方法");
// 调用业务层执行查询操作
demoService.test();
return "hello";
}
}
六、在webapp下创建views/*.jsp页面
创建index.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
Insert title here
This is index page.
创建hello.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
Insert title here
Hello World!
七、部署项目并启动服务(Jetty/Tomcat)
服务启动成功后输入地址http://localhost:8888/ssm/hello进行测试,页面将展示Hello World!字样,控制台输入如下信息
执行hello控制器方法
返回查询结果集 -> [{ID=1ba6d11d2639401ebf63c00c5ae7c2a0, NAME=SSM, TYPE=FRAME}]
到此整个框架就搭建完成了,接下来即可进入开发阶段,如果感觉不错请分享出去。
最后在这里推荐本人自己基于SSM搭建的高效便捷开发框架,上手就能用
- 单节点项目:详情参考使用Maven构建 基于SpringMVC+Spring+Mybatis(SSM)高效便捷开发框架
- 分布式项目:详情参考使用Maven构建 整合Dubbo+Zookeeper+SpringMVC+Spring+MyBatis支持分布式 高效便捷开发框架