SSM框架,即Spring + Spring MVC + MyBatis的整合框架集,是继SSH后比较主流的Java EE企业级框架,采用标准的MVC模式,项目结构与微软的ASP.NET MVC框架非常相似。本文主要结合Intellij IDEA和Maven实现SSM基础框架的搭建与优化。
环境
- jdk-1.8.0
- tomcat-8.6.8
- maven-3.3.9
- Intellij IDEA 2016
创建Maven项目
启动IDEA(IDEA的安装请参考IntelliJ IDEA 安装)。
点击”Create New Project”创建新项目
选择右侧的”Maven”,然后配置”Project SDK”为你本机的Java安装目录,接下来填写项目相关信息,创建一个基本的Maven项目
项目创建完成后,点击右下角的”Enable Auto-Import”以自动导入相关依赖
接下来须设置项目的Maven设置(每次新建Maven项目都需重新配置),同时按Ctrl
+Alt
+S
打开设置面板,找到Maven配置界面,将”Maven home directory”修改为本机Maven安装目录
一个基本的Maven环境已经搭建完成,下面开始整合SSM框架。
整合SSM框架
POM.xml
POM是项目对象模型(Project Object Model)的简称,pom.xml是Maven的核心配置文件。一个Maven项目必须包含pom.xml配置文件,文件中包括了与开发者有关的,缺陷跟踪系统,组织与许可,项目的URL,项目依赖,以及其他与这个项目相关的东西。
以下是本文项目的pom.xml配置文件:
1 | "1.0" encoding="UTF-8" xml version= |
springmvc.xml
SpringMVC配置文件:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86"1.0" encoding="UTF-8" xml version=
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
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/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd">
<!-- 注解驱动、校验器 -->
<mvc:annotation-driven validator="validator"/>
<!-- 视图解析器 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/"/>
<property name="suffix" value=".jsp"/>
</bean>
<!-- 组件扫描 -->
<context:component-scan base-package="com.zkh.controller"></context:component-scan>
<!-- 校验器 -->
<bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean">
<property name="providerClass" value="org.hibernate.validator.HibernateValidator" />
<!-- 指定校验使用的资源文件,默认使用classpath:ValidationMessages.properties -->
<property name="validationMessageSource" ref="messageSource" />
</bean>
<!-- 校验错误信息配置文件 -->
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<!-- 资源文件名-->
<property name="basenames">
<list>
<value>classpath:ValidationMessages</value>
</list>
</property>
<!-- 资源文件编码格式 -->
<property name="fileEncodings" value="utf-8" />
<!-- 对资源文件内容缓存时间,单位秒 -->
<property name="cacheSeconds" value="120" />
</bean>
<!-- 全局异常处理器 -->
<bean class="com.zkh.exception.CustomExceptionResolver"></bean>
<!-- 文件上传 -->
<bean id="multipartResolver"
class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!-- 默认编码 -->
<property name="defaultEncoding" value="utf-8" />
<!-- 文件大小最大值 -->
<property name="maxUploadSize" value="10485760000" />
<!-- 内存中的最大值 -->
<property name="maxInMemorySize" value="40960" />
</bean>
<!-- RESTful下静态资源解析 -->
<!-- <mvc:resources location="/js/" mapping="/js/**"/>
<mvc:resources location="/img/" mapping="/img/**"/> -->
<!-- 拦截器 -->
<!--<mvc:interceptors>-->
<!--<mvc:interceptor>-->
<!--<mvc:mapping path="/**"/>-->
<!--<mvc:mapping path="/user/**"/>-->
<!--<bean class="com.zkh.interceptor.LoginInterceptor"></bean>-->
<!--</mvc:interceptor>-->
<!--</mvc:interceptors>-->
<!--避免IE执行AJAX时,返回JSON出现下载文件 -->
<bean id="mappingJacksonHttpMessageConverter" class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
<property name="supportedMediaTypes">
<list>
<value>application/json;charset=UTF-8</value>
</list>
</property>
</bean>
</beans>
applicationContext-dao.xml
数据访问接口层配置文件,包含spring与mybatis的整合配置及数据源配置。这里使用了阿里巴巴的Druid连接池以及开源的分页插件PageHelper,Druid可以说是目前最好的数据库连接池,PageHelper可以简化分页功能开发,关于Druid和PageHelper的完整配置会在后面的文章介绍,当然你也可以使用c3p0连接池代替,配置文件里包含c3p0的配置方式。
1 | "1.0" encoding="UTF-8" xml version= |
sqlMapConfig.xml
Mybatis配置文件:
1 | "1.0" encoding="UTF-8" xml version= |
web.xml
1 | "1.0" encoding="UTF-8" xml version= |
Mapper和pojo
Mapper文件和pojo实体类可以借助”mybatis-generator”自动生成工具生成,关于mybatis-generator的使用请自行Google。
项目结构
以上只是一些最核心的配置文件说明,完整代码已发布在Github上,地址在本文末尾,最终项目结构效果如下:
Tomcat配置
点击菜单栏Run->Edit Configurations…
在Run面板左上方添加,选择Tomcat Server->Local
接下来配置Name(可随意)、Tomcat安装路径、jre安装路径
然后打开Deployment标签页,配置使当前项目自动打包并添加到服务器中
现在可以运行测试你的WEB项目了,按Shift
+F10
运行应用,Shift
+F9
可进行应用调试。
运行效果
总结
以上为最基本的SSM整合框架环境搭建,开发过ASP.NET MVC的同学可能会有一种似曾相识的感觉,因为它们真的太像了。之后会向项目中添加一些插件以提高开发效率及应用性能。
具体代码已发布在Github上,地址:SSM
本文为作者kMacro原创,转载请注明来源:https://zkhdev.github.io/2017/03/18/java-ssm/