搭建ssm框架项目基本原理和主要的配置文件小结

1.springmvc是spring框架的一个模块,springmvc和spring无需通过中间整合层进行整合。springmvc是一个基于mvc的web框架。mvc的思想大家已经很熟悉了,简称“Model-View-Controller”。

下面先简单介绍下我对spring-mvc的理解。

上面这张图大概说明了springmvc的运行过程,看起来可能有点云里雾里的,总结起来就是下面这些:

  1. 客户端发起请求到前端控制器(DispatcherServlet).
  2. 前端控制器请求HandlerMappering 查找Handler,可以根据xml配置、注解进行查找。
  3. DispatcherServlet将请求提交到Controller;
  4. Controller调用业务逻辑处理后,返回ModelAndView;
  5. DispatcherServlet查询一个或多个ViewResoler视图解析器,找到ModelAndView指定的视图;
  6. 视图负责将结果显示到客户端。

这里稍微解释下常用的几个组件名称和作用。

  • 前端控制器(DispatcherServlet):用于接收请求,响应结果
  • 处理器映射器(HandlerMapping):根据请求的url查找Handler(三大核心组件之一)
  • 处理器适配器(HandlerAdapter):按照特定的规则去执行Handler(三大核心组件之一)
  • 处理器(Handler):编写Handler时按照HandlerAdapter的要求去做,这样适配器才可以去正确执行Handler
  • 视图解析器(View resolver):进行视图解析(三大核心组件之一)
  • 视图(View):包括jsp、pdf等

    在了解了上面的基础原理后下面来讲下几个主要的配置文件。项目开发前所需要的jar包提前要导入项目工程里面去。

有几个主要的配置文件,先了解下每个配置文件的作用。

1. web.xml:当服务启动时首先会去加载web.xml这个资源文件,里面包括了对前端控制器、乱码问题等配置。

2.applicatonContext.xml : 一般配置数据源,事物,注解 等。

在这里我使用的是applicatonContext-*.xml的形式将DAO、Service、Transaction层分开配置,这样便于管理

分别为applicatonContext-dao.xml、applicatonContext-service.xml、applicatonContext-transaction.xml

分开配置时,需要在web.xml中配置上下文位置

3.springmvc.xml: 里面配置的是控制层的 ,如视图解析器静态资源, mvc 文件上传,拦截器等。

4.SqlMapConfig.xml: 该配置文件为MyBatis的配置文件,里面无需配置,一切交给spring管理,但是xml文件基础配置要有。

以下是配置文件代码:

web.xml

[html] view plain copy

print?

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://java.sun.com/xml/ns/javaee"
  4. xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
  5. id="WebApp_ID" version="2.5">
  6. <display-name>ssm_boot_crm</display-name>
  7. <welcome-file-list>
  8. <welcome-file>index.html</welcome-file>
  9. <welcome-file>index.htm</welcome-file>
  10. <welcome-file>index.jsp</welcome-file>
  11. <welcome-file>default.html</welcome-file>
  12. <welcome-file>default.htm</welcome-file>
  13. <welcome-file>default.jsp</welcome-file>
  14. </welcome-file-list>
  15. <!-- 上下文的位置 -->
  16. <context-param>
  17. <param-name>contextConfigLocation</param-name>
  18. <param-value>classpath:applicationContext-*.xml</param-value>
  19. </context-param>
  20. <!-- Spring的监听器 -->
  21. <listener>
  22. <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  23. </listener>
  24. <!-- POST提交过滤器 UTF-8 -->
  25. <filter>
  26. <filter-name>encoding</filter-name>
  27. <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
  28. <init-param>
  29. <param-name>encoding</param-name>
  30. <param-value>UTF-8</param-value>
  31. </init-param>
  32. </filter>
  33. <filter-mapping>
  34. <filter-name>encoding</filter-name>
  35. <url-pattern>*.action</url-pattern>
  36. </filter-mapping>
  37. <!-- 前端控制器 -->
  38. <servlet>
  39. <servlet-name>crm</servlet-name>
  40. <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  41. <init-param>
  42. <param-name>contextConfigLocation</param-name>
  43. <!-- 此处不配置 默认找 /WEB-INF/[servlet-name]-servlet.xml -->
  44. <param-value>classpath:springmvc.xml</param-value>
  45. </init-param>
  46. <load-on-startup>1</load-on-startup>
  47. </servlet>
  48. <servlet-mapping>
  49. <servlet-name>crm</servlet-name>
  50. <!-- 1:*.do *.action 拦截以.do结尾的请求 (不拦截 jsp png jpg .js .css)
  51. 2:/ 拦截所有请求 (不拦截.jsp) 建议使用此种 方式 (拦截 .js.css .png) (放行静态资源)
  52. 3:/* 拦截所有请求(包括.jsp) 此种方式 不建议使用 -->
  53. <url-pattern>*.action</url-pattern>
  54. </servlet-mapping>
  55. </web-app>

applicationContext-dao.xml

[html] view plain copy

print?

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
  6. xmlns:task="http://www.springframework.org/schema/task" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
  7. xsi:schemaLocation="http://www.springframework.org/schema/beans
  8. http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
  9. http://www.springframework.org/schema/mvc
  10. http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
  11. http://www.springframework.org/schema/context
  12. http://www.springframework.org/schema/context/spring-context-4.0.xsd
  13. http://www.springframework.org/schema/aop
  14. http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
  15. http://www.springframework.org/schema/tx
  16. http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
  17. http://www.springframework.org/schema/task
  18. http://www.springframework.org/schema/task/spring-task-4.0.xsd
  19. http://code.alibabatech.com/schema/dubbo
  20. http://code.alibabatech.com/schema/dubbo/dubbo.xsd">
  21. <!-- srping框架 配置文件 用于管理数据库连接池 -->
  22. <!-- 配置 读取properties文件 db.properties -->
  23. <context:property-placeholder location="classpath:db.properties" />
  24. <!-- 配置 数据源 用于连接数据库 -->
  25. <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
  26. <!-- 数据库驱动 -->
  27. <property name="driverClassName" value="${jdbc.driver}" />
  28. <!-- 连接地址 -->
  29. <property name="url" value="${jdbc.url}" />
  30. <!-- 用户名 -->
  31. <property name="username" value="${jdbc.username}" />
  32. <!-- 密码 -->
  33. <property name="password" value="${jdbc.password}" />
  34. </bean>
  35. <!-- 配置 Mybatis的工厂 -->
  36. <bean class="org.mybatis.spring.SqlSessionFactoryBean">
  37. <!-- 绑定数据源 -->
  38. <property name="dataSource" ref="dataSource" />
  39. <!-- 配置Mybatis的核心 配置文件所在位置 -->
  40. <property name="configLocation" value="classpath:SqlMapConfig.xml" />
  41. <!-- 配置pojo别名 -->
  42. <property name="typeAliasesPackage" value="com.company.ssm.crm.pojo" />
  43. </bean>
  44. <!-- 配置  1:原始Dao开发 接口实现类 Mapper.xml 三个
  45. 2:接口开发 接口 不写实现类 Mapper.xml 二个 (UserDao、ProductDao
  46. 、BrandDao。。。。。。。)
  47. 3:接口开发、并支持扫描 cn.itcast.core.dao(UserDao。。。。。) 写在此包下即可被扫描到
  48. -->
  49. <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
  50. <property name="basePackage" value="com.company.ssm.crm.dao" />
  51. </bean>
  52. </beans>

applicationContext-service.xml

[html] view plain copy

print?

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
  6. xmlns:task="http://www.springframework.org/schema/task" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
  7. xsi:schemaLocation="http://www.springframework.org/schema/beans
  8. http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
  9. http://www.springframework.org/schema/mvc
  10. http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
  11. http://www.springframework.org/schema/context
  12. http://www.springframework.org/schema/context/spring-context-4.0.xsd
  13. http://www.springframework.org/schema/aop
  14. http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
  15. http://www.springframework.org/schema/tx
  16. http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
  17. http://www.springframework.org/schema/task
  18. http://www.springframework.org/schema/task/spring-task-4.0.xsd
  19. http://code.alibabatech.com/schema/dubbo
  20. http://code.alibabatech.com/schema/dubbo/dubbo.xsd">
  21. <!-- 配置扫描包 扫描 @Service    spring代理管理业务层 -->
  22. <context:component-scan base-package="com.company.ssm.crm.service" />
  23. </beans>

applicationContext-transaction.xml

[html] view plain copy

print?

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"
  4. xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
  7. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
  8. http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
  9. http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">
  10. <!-- spring 事务管理器 -->
  11. <bean id="transactionManager"
  12. class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
  13. <!-- 数据源 -->
  14. <property name="dataSource" ref="dataSource" />
  15. </bean>
  16. <!-- 通知 -->
  17. <tx:advice id="txAdvice" transaction-manager="transactionManager">
  18. <tx:attributes>
  19. <!-- 传播行为 -->
  20. <tx:method name="save*" propagation="REQUIRED" />
  21. <tx:method name="insert*" propagation="REQUIRED" />
  22. <tx:method name="add*" propagation="REQUIRED" />
  23. <tx:method name="create*" propagation="REQUIRED" />
  24. <tx:method name="delete*" propagation="REQUIRED" />
  25. <tx:method name="update*" propagation="REQUIRED" />
  26. <tx:method name="find*" propagation="SUPPORTS" read-only="true" />
  27. <tx:method name="select*" propagation="SUPPORTS" read-only="true" />
  28. <tx:method name="get*" propagation="SUPPORTS" read-only="true" />
  29. </tx:attributes>
  30. </tx:advice>
  31. <!-- AOP 切面 -->
  32. <aop:config>
  33. <aop:advisor advice-ref="txAdvice"
  34. pointcut="execution(* cn.itcast.core.service.*.*(..))" />
  35. </aop:config>
  36. </beans>

springmvc.xml

[html] view plain copy

print?

  1. <beans xmlns="http://www.springframework.org/schema/beans"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
  3. xmlns:context="http://www.springframework.org/schema/context"
  4. xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
  5. xmlns:task="http://www.springframework.org/schema/task" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans
  7. http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
  8. http://www.springframework.org/schema/mvc
  9. http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
  10. http://www.springframework.org/schema/context
  11. http://www.springframework.org/schema/context/spring-context-4.0.xsd
  12. http://www.springframework.org/schema/aop
  13. http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
  14. http://www.springframework.org/schema/tx
  15. http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
  16. http://www.springframework.org/schema/task
  17. http://www.springframework.org/schema/task/spring-task-4.0.xsd
  18. http://code.alibabatech.com/schema/dubbo
  19. http://code.alibabatech.com/schema/dubbo/dubbo.xsd">
  20. <!-- 加载属性文件 -->
  21. <context:property-placeholder location="classpath:resource.properties" />
  22. <!-- 配置扫描 器 -->
  23. <context:component-scan base-package="com.company.ssm.crm.controller" />
  24. <!-- 配置处理器映射器 适配器 -->
  25. <mvc:annotation-driven />
  26. <!-- 配置视图解释器 jsp -->
  27. <bean id="jspViewResolver"
  28. class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  29. <property name="prefix" value="/WEB-INF/jsp/" />
  30. <property name="suffix" value=".jsp" />
  31. </bean>
  32. </beans>

SqlMapConfig.xml

[html] view plain copy

print?

  1. <beans xmlns="http://www.springframework.org/schema/beans"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
  3. xmlns:context="http://www.springframework.org/schema/context"
  4. xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
  5. xmlns:task="http://www.springframework.org/schema/task" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans
  7. http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
  8. http://www.springframework.org/schema/mvc
  9. http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
  10. http://www.springframework.org/schema/context
  11. http://www.springframework.org/schema/context/spring-context-4.0.xsd
  12. http://www.springframework.org/schema/aop
  13. http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
  14. http://www.springframework.org/schema/tx
  15. http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
  16. http://www.springframework.org/schema/task
  17. http://www.springframework.org/schema/task/spring-task-4.0.xsd
  18. http://code.alibabatech.com/schema/dubbo
  19. http://code.alibabatech.com/schema/dubbo/dubbo.xsd">
  20. <!-- 加载属性文件 -->
  21. <context:property-placeholder location="classpath:resource.properties" />
  22. <!-- 配置扫描 器 -->
  23. <context:component-scan base-package="com.company.ssm.crm.controller" />
  24. <!-- 配置处理器映射器 适配器 -->
  25. <mvc:annotation-driven />
  26. <!-- 配置视图解释器 jsp -->
  27. <bean id="jspViewResolver"
  28. class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  29. <property name="prefix" value="/WEB-INF/jsp/" />
  30. <property name="suffix" value=".jsp" />
  31. </bean>
  32. </beans>

db.properties

[html] view plain copy

print?

  1. jdbc.driver=com.mysql.jdbc.Driver
  2. jdbc.url=jdbc:mysql://localhost:3306/crm?characterEncoding=utf-8
  3. jdbc.username=root
  4. jdbc.password=root

以上就是主要的配置文件的配置,特别注意的是在web.xml中默认加载的资源文件再WEB_INF目录下,如果的你xml不在的话就要写清楚的文件路径,例如写在src目录下面就要写classpath,之前开发过程中忽略了这一点,所以启动一直报错找不到资源文件。

主要参考出处

并结合自己的SSM搭建,小结SSM环境搭建,以便记忆,交流和学习,有什么不妥的地方,欢迎指正、交流

原文地址:https://www.cnblogs.com/iOS-mt/p/8462349.html

时间: 2024-11-05 18:52:57

搭建ssm框架项目基本原理和主要的配置文件小结的相关文章

IDEA(一) 使用IDEA搭建SSM框架项目

1. 新建项目 IDEA中新建Maven项目,使用Maven Archetype原型:maven-archetype-webapp 新建项目结构为: 2. 新建包目录 新建Java代码目录:src.main.java src.main.java下新建分层模型package,带上项目的groupId(仅供参考) common:存放全局变量,公共枚举等 base:存放基础组件,如工具类,过滤器,配置类等 controller:控制层 vo:前端传输过来的对象,如封装的请求 bo:业务对象,可能是多个

Maven项目搭建(二):Maven搭建SSM框架

        上一章给大家讲解了如何使用Maven搭建web项目.       这次给大家介绍一下怎么使用Maven搭建SSM框架项目.       首先我们来看一下pom.xml的属性介绍: project: pom的xml根元素. parent:  声明继承. modules:  声明聚合,该值是一个当前POM的相对目录.用户项目的聚合. groupId:  定义当前Maven项目隶属的实际项目. artifactId:  定义实际项目中的一个Maven项目模块,一般为实际项目名称. ve

使用maven搭建ssm框架的javaweb项目

目前主流的javawe项目,常会用到ssm(Spring+Spring MVC+Mybatis)框架来搭建项目的主体框架,本篇介绍搭建SSM矿建的maven项目的实施流程.记之共享! 一.SSM框架介绍 SSM框架是指:Spring+Spring MVC+Mybatis. [Spring] 轻量--从大小与开销两方面而言Spring都是轻量的,此外,Spring是非侵入式的:典型地,Spring应用中的对象不依赖于Spring的特定类.简单说就是自己需要什么就导入对应的jar的即可,而不是侵入式

完整搭建SSM框架之黑暗中的摸索

JavaWeb基础该学的都了解过一点了,那么必须要在项目中来练习和升华了(就像高三对数理化的整合练习!) 一共分为三个步骤: 1.环境的选择和准备 2.工程的创建 3.代码和配置文件的创建 环境 工程创建 在pom.xml文件中加入依赖包(去除index.jsp的报错) <!-- 导入java ee jar 包 --> <dependency> <groupId>javax</groupId> <artifactId>javaee-api<

IDEA搭建ssm框架测试衍生出的问题The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: D:\Develop\jdk7\jdk1.7.0_79\bin;

最近玩起IDEA这开发工具,搭建ssm框架测试时,部署项目出现如下问题: 信息: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: D:\Develop\jdk7\jdk1.7.0_79\bin;C:\Windows\Sun\Java\bin;C:\Windows

转-使用idea2017搭建SSM框架

转自http://www.cnblogs.com/hackyo/p/6646051.html 使用idea2017搭建SSM框架 搭建个SSM框架居然花费了我好长时间!特此记录! 需要准备的环境: idea 2017.1 jdk1.8 Maven 3.3.9  请提前将idea与Maven.jdk配置好,本次项目用的都是比较新的 注:配置完ide红线报错没关系!可以run! 步骤: 一.首先使用idea新建一个Maven webapp项目 点击Finish,第一次搭建可能会很慢,甚至可能需要VP

快速搭建ssm框架

快速搭建SSM框架 因为最近有很多朋友问我自己的项目搭建的不够完善,并且经常出现一些小问题,那么今天我又整理了一下文档教大家如何快速搭建SSM框架我是用 eclipse搭建的,如果想用idear的话我过段时间再出一个 第一步:创建web项目 第二步:使用小黑鸟工具生成实体类,mapper接口,以及mapper.xml  不需要接口实现类(需要装插件) 第三步:创建service接口,创建service接口实现类,在类上添加@Service(需要提前引入SSM所需lib架包) 然后:调用***ma

使用IDEA搭建SSM框架

前言: [关于SSM的框架,以后再做整理] [学习性文章,本文长期更新,如有错误,感激指正,并会及时更正与回答,谢谢] 正文: 1.开发环境的配置[以后再做整理] 2.IDEA上创建MAVEN WEB框架[以后再做整理] 3.搭建SSM框架 ssm框架的搭建过程,实际是spring.spring-MVC.mybatis三个JAVA开源框架的整合过程.这里涉及到[利用maven整合框架,合并项目]的学习,[以后再做整理]. step1:maven引入需要的jar包 关于pom.xml文件的内容的组

详解intellij idea搭建SSM框架(spring+maven+mybatis+mysql+junit)(上)

SSM(Spring+SpringMVC+MyBatis)框架集由Spring.SpringMVC.MyBatis三个开源框架整合而成,常作为数据源较简单的web项目的框架. 其中spring是一个轻量级的控制反转(IoC)和面向切面(AOP)的容器框架. SpringMVC分离了控制器.模型对象.分派器以及处理程序对象的角色,这种分离让它们更容易进行定制. MyBatis是一个支持普通SQL查询,存储过程和高级映射的优秀持久层框架. 本文旨在快速且详细的介绍intellij idea 搭建SS