SSM框架整合

北城余情 提交于 2020-04-06 18:17:39

mybatis逆向工程

mybatis-generator生成pojo、mapper接口及映射文件

mapper放到e3-manager-dao层中

  1. 导入sql到数据库中;
  2. 导入逆向工程工具,配置xml文件
  3. 运行main方法
  4. 重复运行main不会覆盖!

dao层

mybatis配置文件:SqlMapConfig.xml,无法添加内容,只需有文件存在即可

mybatis整合spring,通过spring管理SqlSessionFactory、mapper代理对象,需要mabatis和spring整合包

applicationContext-dao.xml:

Service层

applicationContext-service.xml

需要配置一个扫描包,把service的bean扫描到,放到spring容器中,还需要配置事务

所有的service实现类都放到spring容器中管理。并spring管理事务

表现层

SpringMVC框架,springmvc管理controller

SpringMVC三大组件     是什么?

 

配置文件存放的位置:

一般放到web层,因为dao、service、interface、pojo最终都会打成一个jar包放到的web-info的lib下,如果放到jar包里面不太好访问

放到e3-mall-web下的src/main/resources下新建mybatis,spring文件包

DAO层整合

1.创建sqlmapconfig.xml配置文件   位置:e3-manager-web工程/src/main/resources下新建SqlSessionFactory

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

</configuration>

2.spring整合mybatis

创建applicationContext-dao.xml配置文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"
	xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-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/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd
	http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.2.xsd">


<!-- 连接数据库 -->

<!-- 1.加载配置文件 -->
<context:property-placeholder location="calsspath:conf/db.properties"/>
<!-- 2.数据库连接池 -->
<bean id="datasource" class="com.alibaba.druid.pool.DruidDataSource" destroy-method="close"><!--引用德魯伊连接池 -->
	<property name="url" value="${jdbc.url}"/>
	<property name="username" value="${jdbc.username}"/>
	<property name="password" value="${jdbc.password}"/>
	<property name="driverClassName" value="${jdbc.driver}" />
	<property name="maxActive" value="10" />
	<property name="minIdle" value="5" />
</bean>



<!-- 让spring管理sqlsessionfactory 使用mybatis和spring整合包中的 -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
	<property name="datasource" ref="datasource"/>引用上面数据库id datasource
	<property name="confiLocation" value="classpath:mybatis/SqlMapConfig.xml"/>	加载mybatis的空配置文件
</bean>


<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">此处是什么意思?
	<property name="basepackage" value="cn.e3-mall.mapper"/>
</bean>


</beans>

db.properties文件

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/e3mall?characterEncoding=utf-8
jdbc.username=root
jdbc.password=root

备注:

Druid是目前最好的数据库连接池,在功能、性能、扩展性方面,都超过其他数据库连接池,包括DBCP、C3P0、BoneCP、Proxool、JBoss DataSource。

Druid已经在阿里巴巴部署了超过600个应用,经过多年多生产环境大规模部署的严苛考验

Service层整合

<context:component-scan base-package="cn.e3mall.service"/>什么意思?


<!-- 事务管理器 -->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    <property name="datasource" ref="datasource"/>为什么引用数据库
</bean>

<!-- 通知 -->
<tx:advice id="txadvice" transaction-manager="transactionManager">
    <tx:attributes>
    <!-- 传播行为 -->
            <tx:method name="save*" propagation="REQUIRED" />
            <tx:method name="insert*" propagation="REQUIRED" />
            <tx:method name="add*" propagation="REQUIRED" />
            <tx:method name="create*" propagation="REQUIRED" />
            <tx:method name="delete*" propagation="REQUIRED" />
            <tx:method name="update*" propagation="REQUIRED" />
            <tx:method name="find*" propagation="SUPPORTS" read-only="true" />
            <tx:method name="select*" propagation="SUPPORTS" read-only="true" />
            <tx:method name="get*" propagation="SUPPORTS" read-only="true" />    
    </tx:attributes>
</tx:advice>


<!-- 切面 -->
<aop:config>
    <aop:advisor advice-ref="txadvice" pointcunt="execution(* cn.e3mall.service.*.*(..))"/>    
</aop:config>

事务的传播行为不是很理解!

表现层整合

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:p="http://www.springframework.org/schema/p"
	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-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/context http://www.springframework.org/schema/context/spring-context-4.2.xsd">

<context:component-scan base-package="cn.e3mall.controller"/>
<mvc:annotaiton-driven/>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
	<property name="prefix" value="/WEB-INF/jsp"/>
	<property name="subfix" value=".jsp	"/>
</bean>

web.xml配置

<!--web.xml -->
<!--加载spring容器 -->
<context-param>
<param-name>contextCongifigLocation</param-name>
<param-value>classpath:spring/applicationContext*.xml</param-value>
</context-param>

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

<!--解决post乱码 -->
<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>
	<filter-parttern>*/</filter-parttern>
</filter-mapping>


<!--spring前端控制器 -->
<servlet>
	<serlvet-name>e3-manager</serlvet-name>
	<serlvet-class>org.springframework.web.servlet.DispatcherServlet</serlvet-class>
	<init-param>
		<param-name>contextConfigLocation</param-name>
		<param-name>classpath:spring/springmcv.xml</param-name>
	</init-param>
	<load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
	<servlet-name>e3-manager</servlet-name>
	<url-parttern>/</url-parttern>拦截所有请求,不包括jsp
</servlet-mapping>

整合测试

什么是返回json数据?

返回json数据,就不用写jsp了,直接使用responsbody注解就可以。

dao层:

单表,可以使用逆向工程生成mapper数据

service层:

请求参数是什么?

根据shangpinid查询商品信息,参数就是商品id;返回值为商品对象,包装到pojo中,业务逻辑为根据商品id查询商品信息。

service要常见接口与实现类

public interface ItermService{
    Iterm getItermByID(long ItermID);
}
@Service   //加入service注解
public class ItermServiceImpl implements ItermService{
	
	@autowired  //要查询数据库,要注入mapp的代理对象
	private ItermMapper itermMapper;
	@override
	public Iterm gteItermByID(long ItermID){
		
		//一种写法
		Iterm tbIterm = itermMapper.selectByPrimaryKey(ItermID);
		return tbIterm;
		
		//另一种查询条件写法
		TbItermExample example = new TbItermExample();
		Criteria criteria = example.createCreateria();
		//设置查询条件
		criteria.andIDEqualTo(itermID);
		List<TbIterm> list = itermMapper.selectByExample(example);
		if(list !=null && list.size()>0){
			return list.get(0);
		}
		return null;		
	}
	
}

Controller层:

@Controller //添加controller注解
public class Controller{
	@autowired //注入service接口
	private ItermService itermService;
	//url母版映射,把url的itermID取出来作为参数
	@RequestMapping("/iterm/{itermID}");
	//相应json数据   相应pojo,会自动换位json,前提是把jackson包加入进来,如果没有jackson,就会报406错误  jackson依赖conmmon,需要加上注解
	
	@ResopnseBody
	public Iterm getItermByID(@PathVariable Long itermID){ //注意此处的itermID与requestMapping中的itermID要是一致就会自动映射过来,如果不一致此处还需要加一个value,这样就可以获取到商品id了
	Iterm tbIterm = itermService.getItermByID(itermID);
		return itermID;
	}		
}

整合测试:

500为抛异常了,主要原因为接口与映射文件不在一起,找到接口,但是没有找到实现类

查看编译后的文件只有接口,没有实现类,验证了出现的问题

解决:

此异常的原因是由于mapper接口编译后在同一个目录下没有找到mapper映射文件而出现的。由于maven工程在默认情况下src/main/java目录下的mapper文件是不发布到target目录下的。

e3-manager-dao工程的pom文件中添加如下内容:

<!-- 如果不添加此节点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>

查看class文件出现实现类

svn的使用

 

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!