拉Jar包方式SSM框架搭建

目录主题帖传送门:Spring SpringMVC MyBatis 整合-重复的轮子造的不亦乐乎 - 简书

1、环境

Eclipse + JDK1.8 + Tomcat 9.x,环境一定要统一,否则后患无穷,很多bug都是环境不统一造成的。

2、SSM搭建

第一步:就是找Jar包,说实话,找的很辛苦,网上很多Maven和Gradle的,里面加载了很多废包,Coder的洁癖告诉我要自己动手丰衣足食。

项目里的包如上图

spring-XXX开头的是Spring+SpringMVC常用包,按图索骥找到所有包是从Spring官网下载的,由于Spring改版,SpringBoot主推,没了下载地址,github上下源码是不可能下了,那么就用Index of libs-release-local/org/springframework/spring 这个地址试试

commons-XXX开头的是Apache-commons项目的用于数据库连接池、文件IO相关的,在Apache官网找的链接地址下载Apache Commons – Apache Commons

mybatis-XXX开头的包,是Mybatis官网mybatis – MyBatis 3 | 入门找到的github地址Releases · mybatis/mybatis-3 · GitHub

Jackson是用于JSON收发的,是通过maven下载的,怎么下传送门:Eclipse Maven下载依赖包 - 简书

JSTL和Standard库是JSP标准标签库,刀耕火种没什么不好,不是么,官网地址Index of /dist/jakarta/taglibs/standard/binaries

Mysql-connect-XXX是mysql官网的包,mysql链接,各自根据对应的数据库找驱动包

annotations-api这个库其实是从tomcat9的包里拷贝出来的,在tomcat9-lib包里第一个,它是我拷贝出来解决注解异常的,应用包的规则是先找应用本地的,找不到就找tomcat的。这个包实际不用copy出来,因为可以通过add lib到classPath下面解决异常,后面会讲。

找到这些包,包的版本之间是有差异的,如果不想管这些差异和异常,可以直接按照截图中的jar包版本号按图索骥,后面会省去很多麻烦。比如Spring5.0以上的包需要搭配Jackson2.6以上的包才行,否则报错找不到jackson中的一个类,再比如mysql5.0驱动和8.0驱动在className上有个小差异,会导致一个warning。

框架整合不困难,困难的是如何选择正确的版本。

懒得逐个找包的用完整的Jar包分享百度盘:SSMJars.zip_免费高速下载|百度网盘-分享无限制

第二步:建项目

Eclipse建一个Dynamic Web项目,勾选生成web.xml

将如上找到的jar包拷贝到WebContent > WEB-INF > lib文件夹下,刷新项目

添加Server,在Eclipse > Servers添加Server-Tomcat9

打开项目properties > Java Build Path > Libraries > ClassPath下Add Library > Server Runtime选择tomcat9 Add,如果这里看不到tomcat9,那就回到上面一句话添加Server 

上面做完,其实annotations-api这个可以从你的项目lib中删除了。删不删随你,如果你开始就没拷贝,就更好了。不删的话tomcat版本不一致会导致报错说annotation类重复。

第三步:文件目录

结构都是自己建的,我的如下:

WebContent > WEB-INF > web.xml

WebContent下其他可以建可以不建,images放网站UI图片切片,JavaScripts放自己的JS,lib放jquery等三方UI控件,stylesheets放CSS,upload用于存放上传的文件,当然有条件可以用文件服务代替本地这种存放。

resources 是自己建的包,里面放Spring、SpringMVC和数据库配置文件,我嫌麻烦所以数据库配置直接写Spring.xml里了,所以比那些格式化的项目少了一个properties文件,要不要无所谓。

SRC下

com.sidi.controller 存放控制类

com.sidi.dao 存放Mybatis数据库操作接口,因为用注解SQL方式,所以不需要MapperXML

com.sidi.entity 存放Mybatis数据库实体对象,由MybatisGenerator生成,传送门:Eclipse中使用MyBatis Generator - 简书

com.sidi.service 服务接口

com.sidi.service.impl 服务接口实现类

com.sidi.util 工具类

第四步:配置文件

web.xml如下直接拷贝

<?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_3_0.xsd"

id="WebApp_ID" version="3.0">

<display-name>SIDI</display-name>

<welcome-file-list>

<welcome-file>index.html</welcome-file>

<welcome-file>index.htm</welcome-file>

<welcome-file>index.jsp</welcome-file>

<welcome-file>default.html</welcome-file>

<welcome-file>default.htm</welcome-file>

<welcome-file>default.jsp</welcome-file>

</welcome-file-list>


<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>

</filter>

<filter-mapping>

<filter-name>CharacterEncodingFilter</filter-name>

<url-pattern>/*</url-pattern>

</filter-mapping>



<context-param>

<param-name>contextConfigLocation</param-name>

<param-value>classpath*:/spring.xml</param-value>

</context-param>

<listener>

<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>

</listener>

<servlet>

<servlet-name>springMVC</servlet-name>

<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

<init-param>

<param-name>contextConfigLocation</param-name>

<param-value>classpath*:/spring-mvc.xml</param-value>

</init-param>

<load-on-startup>1</load-on-startup>

</servlet>

<servlet-mapping>

<servlet-name>springMVC</servlet-name>

<url-pattern>/</url-pattern>

</servlet-mapping>


</web-app>

web.xml修改建议:暂时无需修改


Spring.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:tx="http://www.springframework.org/schema/tx"

xmlns:context="http://www.springframework.org/schema/context"

xmlns:aop="http://www.springframework.org/schema/aop"

xmlns:mvc="http://www.springframework.org/schema/mvc"

xmlns:task="http://www.springframework.org/schema/task"

xsi:schemaLocation="http://www.springframework.org/schema/beans   

    http://www.springframework.org/schema/beans/spring-beans-4.2.xsd   

    http://www.springframework.org/schema/tx   

    http://www.springframework.org/schema/tx/spring-tx-4.2.xsd   

    http://www.springframework.org/schema/context   

    http://www.springframework.org/schema/context/spring-context-4.2.xsd 

    http://www.springframework.org/schema/aop

    http://www.springframework.org/schema/aop/spring-aop-4.2.xsd 

    http://www.springframework.org/schema/mvc   

    http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd

    http://www.springframework.org/schema/task

    http://www.springframework.org/schema/task/spring-task-4.2.xsd">


<context:component-scan base-package="com.sidi">

<context:exclude-filter type="annotation"

expression="org.springframework.stereotype.Controller" />

</context:component-scan>


<bean id="dataSource"

class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">

<property name="driverClassName" value="com.mysql.cj.jdbc.Driver" />

<property name="url" value="jdbc:mysql://localhost:3306/testDB?characterEncoding=utf-8" />

<property name="username" value="username" />

<property name="password" value="password" />

</bean>


<bean id="sqlSessionFactory"

class="org.mybatis.spring.SqlSessionFactoryBean">

<property name="dataSource" ref="dataSource" />

</bean>

<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">


        <property name="sqlSessionFactory" ref="sqlSessionFactory" />


        <property name="basePackage" value="com.sidi.dao" />

    </bean>

<bean id="transactionManager"

class="org.springframework.jdbc.datasource.DataSourceTransactionManager">

<property name="dataSource" ref="dataSource" />

</bean>

</beans>

Spring.xml修改建议:

driverClassName:我用的connect是8.0 所以是com.mysql.cj.jdbc.Driver,如果5.0的请改为com.mysql.jdbc.Driver

dataSource:里面的链接参数自己替换

context:component-scan base-package="com.sidi" 包名根据实际src目录替换

sqlSessionFactory下的<property name="basePackage" value="com.sidi.dao" /> 根据实际src中dao目录替换


Spring-MVC.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:tx="http://www.springframework.org/schema/tx"

xmlns:context="http://www.springframework.org/schema/context"

xmlns:aop="http://www.springframework.org/schema/aop"

xmlns:mvc="http://www.springframework.org/schema/mvc"

xmlns:task="http://www.springframework.org/schema/task"

xsi:schemaLocation="http://www.springframework.org/schema/beans   

    http://www.springframework.org/schema/beans/spring-beans-4.2.xsd   

    http://www.springframework.org/schema/tx   

    http://www.springframework.org/schema/tx/spring-tx-4.2.xsd   

    http://www.springframework.org/schema/context   

    http://www.springframework.org/schema/context/spring-context-4.2.xsd 

    http://www.springframework.org/schema/aop

    http://www.springframework.org/schema/aop/spring-aop-4.2.xsd 

    http://www.springframework.org/schema/mvc   

    http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd

    http://www.springframework.org/schema/task

    http://www.springframework.org/schema/task/spring-task-4.2.xsd">

<!-- Spring MVC配置 -->

    <context:annotation-config />


<!-- 扫描注解 -->

    <context:component-scan base-package="com.sidi"  use-default-filters="false">

<context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" />

</context:component-scan>


<!-- 默认的mvc注解映射的支持 -->

    <mvc:annotation-driven />

<!-- 静态资源配置 -->

    <mvc:resources mapping="/stylesheets/**" location="/stylesheets/" /> 

    <mvc:resources mapping="/images/**" location="/images/" />

    <mvc:resources mapping="/lib/**" location="/lib/" />

    <mvc:resources mapping="/javascripts/**" location="/javascripts/" />

    <mvc:resources mapping="/upload/**" location="/upload/" />


<!-- 定义视图解析器  -->

    <bean id="viewResolver" 

class="org.springframework.web.servlet.view.InternalResourceViewResolver">

<property name="prefix" value="/WEB-INF/view/" />

<property name="suffix" value=".jsp" />

</bean>


<!-- 文件上传解析器  -->

    <bean id="multipartResolver"

        class="org.springframework.web.multipart.commons.CommonsMultipartResolver">

        <property name="maxUploadSize" value="-1"/>

        <property name="defaultEncoding" value="UTF-8" />

    </bean>

</beans>

Spring-MVC.xml修改建议:

扫描注解包名根据src实际目录修改

静态资源配置根据webContent目录下结构修改,主要是加载静态资源不拦截

定义视图解析器我的跳转是通过定义的包/WEB-INF/view/XXX.jsp文件完成,其中suffix可以不写兼容HTML,JSP,FreeMaker或者自定义的等格式


至此,SSM拉包搭建完毕,Add进Server跑起来,应该没有任何报错,这里不像其他教程写Hello是因为,后面会写,这里只保证SSM的Jar包完整,配置正确即可。数据库连接没有就在Spring.xml注释配置,后面有数据库再加。启动Tomcat如下图不报错即可。


下一篇:Spring注解开发MVC基本范例 - 简书

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,098评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,213评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,960评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,519评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,512评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,533评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,914评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,804评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,563评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,644评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,350评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,933评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,908评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,146评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,847评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,361评论 2 342

推荐阅读更多精彩内容