`

SSM整合

 
阅读更多

 

先说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" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
	id="WebApp_ID" version="2.5">
	<display-name>springmvc_mybatis1110</display-name>

	<!-- 配置spring容器监听器 -->
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>/WEB-INF/classes/spring/applicationContext-*.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>
		<!-- 加载springmvc配置 -->
		<init-param>
			<param-name>contextConfigLocation</param-name>
			
			<param-value>classpath:spring/springmvc.xml</param-value>
		</init-param>

	</servlet>
	<servlet-mapping>
		<servlet-name>springmvc</servlet-name>
		<url-pattern>*.action</url-pattern>
	</servlet-mapping>
	<!-- 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>
		<url-pattern>/*</url-pattern>
	</filter-mapping>

	<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>
</web-app>
下面是我的 mybaits的核心的配置文件
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>

	<!-- 定义 别名 -->
	<typeAliases>
		<!-- 批量别名定义 指定包路径,自动扫描包下边的pojo,定义别名,别名默认为类名(首字母小写或大写) -->
		<package name="com.dafei.ssm.po" />

	</typeAliases>

	<!-- 
	由于使用spring和mybatis整合的mapper扫描器,这里可以不用配置了
	<mappers>
		<package name="com.dafei.ssm.mapper" />


	</mappers> -->


</configuration>
 
springmvc的配置文件
<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-3.2.xsd 
		http://www.springframework.org/schema/mvc 
		http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd 
		http://www.springframework.org/schema/context 
		http://www.springframework.org/schema/context/spring-context-3.2.xsd 
		http://www.springframework.org/schema/aop 
		http://www.springframework.org/schema/aop/spring-aop-3.2.xsd 
		http://www.springframework.org/schema/tx 
		http://www.springframework.org/schema/tx/spring-tx-3.2.xsd ">

	<!-- 使用spring组件扫描 -->
	<context:component-scan base-package="com.dafei.ssm.controller" />
	
	<!--  注解处理器映射器 -->
	<bean
		class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping">
	</bean>


	<!-- 注解适配器 -->
	<bean
		class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
	<!-- 	在webBindingInitializer中注入自定义属性编辑器、自定义转换器 -->
		<!-- <property name="webBindingInitializer" ref="customBinder"></property> -->
	</bean>

	<!-- 配置视图解析器 要求将jstl的包加到classpath -->
	<!-- ViewResolver -->
	<bean
		class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="prefix" value="/WEB-INF/jsp/" />
		<property name="suffix" value=".jsp" />
	</bean>
	
spring 的配置文件
<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-3.2.xsd 
		http://www.springframework.org/schema/mvc 
		http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd 
		http://www.springframework.org/schema/context 
		http://www.springframework.org/schema/context/spring-context-3.2.xsd 
		http://www.springframework.org/schema/aop 
		http://www.springframework.org/schema/aop/spring-aop-3.2.xsd 
		http://www.springframework.org/schema/tx 
		http://www.springframework.org/schema/tx/spring-tx-3.2.xsd ">

	<!-- 加载配置文件 -->
	<context:property-placeholder location="classpath:db.properties" />
	<!-- 数据库连接池 -->
	<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
		destroy-method="close">
		<property name="driverClassName" value="${jdbc.driver}" />
		<property name="url" value="${jdbc.url}" />
		<property name="username" value="${jdbc.username}" />
		<property name="password" value="${jdbc.password}" />
		<property name="maxActive" value="10" />
		<property name="maxIdle" value="5" />
	</bean>


	<!-- SqlsessionFactory -->
	<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
		<!-- 数据源 -->
		<property name="dataSource" ref="dataSource"/>
		<!-- mybatis配置文件 -->
		<property name="configLocation" value="classpath:mybatis/SqlMapConfig.xml"/>
	</bean>
	
	
	<!-- 
	MapperScannerConfigurer:mapper的扫描器,将包下边的mapper接口自动创建代理对象,
	自动创建到spring容器中,bean的id是mapper的类名(首字母小写)
	 -->
	<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
		<!-- 配置扫描包的路径
		如果要扫描多个包,中间使用半角逗号分隔
		要求mapper.xml和mapper.java同名且在同一个目录 
		 -->
		<property name="basePackage" value="com.dafei.ssm.mapper"/>
		<!-- 使用sqlSessionFactoryBeanName -->
		<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
	</bean>
        <bean id="itemsService" class="com.dafei.ssm.service.impl.ItemsServiceImpl"/>


       <!-- 配置声明式事务 -->
		<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
			<property name="dataSource" ref="dataSource"></property>
			
		</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="update*" propagation="REQUIRED"/>
				<tx:method name="delete*" 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>
		<!-- com.dafei.service.impl.*.*(..)) 这个路径下的所有的类的所有的方法不论输入参数是什么,都进行通知 -->
			<aop:advisor advice-ref="txAdvice" pointcut="execution(* com.dafei.service.impl.*.*(..))"/>
		</aop:config>


	
</beans>
 
 controller 代码
@Controller
@RequestMapping("/items")
public class ItemsController {
	@Autowired
	private ItemsService itemsService;
	

	
	
	@RequestMapping("/xiaoxixi")
	public ModelAndView handleRequest() throws Exception{
		List<ItemsCustom> itemsList = itemsService.findItemsList(null);
		ModelAndView mdv = new ModelAndView();
		mdv.addObject("itemsList", itemsList);
		mdv.setViewName("itemsList");
		return mdv;
		
	}
	@RequestMapping("editItems")
	public String editItems(Model model,int id) throws Exception{
		ItemsCustom itemsCustom = itemsService.findItemsById(id);
		model.addAttribute("item", itemsCustom);
		System.out.println(itemsCustom);
		return "editItem";
	}
	@RequestMapping("editItemSubmit")
	public String editItemSubmit(Integer id,ItemsCustom itemsCustom) throws Exception{
		itemsService.updateItems(id, itemsCustom);
		
		
		return "redirect:xiaoxixi.action";
	}
	@InitBinder
	public void initBinder(WebDataBinder binder) throws Exception {
		binder.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd"),true));
	}
 
public class ItemsServiceImpl implements ItemsService {
	@Autowired
	private ItemsMapperCustom itemsMapperCustom;
	@Autowired
	private ItemsMapper itemsMapper;
	

	public List<ItemsCustom> findItemsList(ItemsQueryVo itemsQueryVo) throws Exception {
		// TODO Auto-generated method stub
		return itemsMapperCustom.findItemsList(itemsQueryVo);
	}


	public ItemsCustom findItemsById(int id) throws Exception {
		// TODO Auto-generated method stub
		Items items = itemsMapper.selectByPrimaryKey(id);
		ItemsCustom itemsCustom = new ItemsCustom();
		BeanUtils.copyProperties(items, itemsCustom);
		
		return itemsCustom;
	}


	public void updateItems(Integer id, ItemsCustom itemsCustom) throws Exception {
		// TODO Auto-generated method stub
		itemsMapper.updateByPrimaryKeyWithBLOBs(itemsCustom);
	}

}
 
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt"  prefix="fmt"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>修改商品信息</title>

</head>
<body> 
<form id="itemForm" action="${pageContext.request.contextPath }/items/editItemSubmit.action" method="post" >
<input type="hidden" name="id" value="${item.id }"/>
修改商品信息:
<table width="100%" border=1>
<tr>
	<td>商品名称</td>
	<td><input type="text" name="name" value="${item.name }"/></td>
</tr>
<tr>
	<td>商品价格</td>
	<td><input type="text" name="price" value="${item.price }"/></td>
</tr>
<tr>
	<td>商品生产日期</td>
	<td><input type="text" name="createtime" value="<fmt:formatDate value="${item.createtime}" pattern="yyyy-MM-dd HH:mm:ss"/>"/></td>
</tr>
<tr>
	<td>商品简介</td>
	<td>
	<textarea rows="3" cols="30" name="detail">${item.detail }</textarea>
	</td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" value="提交"/>
</td>
</tr>
</table>

</form>
</body>

</html>
 
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt"  prefix="fmt"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>查询商品列表</title>
</head>
<body> 
<form action="${pageContext.request.contextPath }/items/queryItem.action" method="post">
查询条件:
<table width="100%" border=1>
<tr>
<td><input type="submit" value="查询"/></td>
</tr>
</table>
商品列表:
<table width="100%" border=1>
<tr>
	<td>商品名称</td>
	<td>商品价格</td>
	<td>生产日期</td>
	<td>商品描述</td>
	<td>操作</td>
</tr>
<c:forEach items="${itemsList }" var="item">
<tr>
	<td>${item.name }</td>
	<td>${item.price }</td>
	<td><fmt:formatDate value="${item.createtime}" pattern="yyyy-MM-dd HH:mm:ss"/></td>
	<td>${item.detail }</td>
	
	<td><a href="${pageContext.request.contextPath }/items/editItems.action?id=${item.id}">修改</a></td>

</tr>
</c:forEach>

</table>
</form>
</body>

</html>
 
 以上 是用ssm整合的一个小Demo,通过今天的学习,自己重点加深了包装类和扩展类的实际应用,还有
springmvc在进行类型转换的时候,例如上面Demo中的String转换成Date类型,由于今天时间的关系,明天
进行通过配置文件的方式,优化类型转换。我的po类是直接使用mybaits生成的。












 

 

分享到:
评论

相关推荐

    SSM整合jar包

    SSM整合是Java Web开发中常见的一种框架集成方式,它结合了Spring、SpringMVC和MyBatis三个强大的开源框架,以实现灵活、高效且松耦合的Web应用开发。这个压缩包包含的是SSM整合所需的jar包,虽然不是最新版本,但...

    SSM整合的Demo

    SSM整合是Java Web开发中常见的一种框架集成方式,它结合了Spring、SpringMVC和MyBatis三个强大的工具,为开发者提供了灵活、高效的开发体验。这个名为"SSM整合的Demo"的项目是一个非Maven构建的示例,特别适合初学...

    黑马程序员SSM整合学习项目demo

    【SSM整合学习项目demo详解】 SSM框架整合是指Spring、Struts2和MyBatis三个主流Java Web开发框架的集成。在这个项目中,我们将详细探讨如何将这三个框架结合在一起,构建一个完整的Web应用程序。 首先,Spring...

    最新尚硅谷SSM整合视频教程(SSM整合开发是目前企业流行使用的框架整合方案)

    最新尚硅谷SSM整合视频教程,最新尚硅谷SSM整合视频教程(SSM整合开发是目前企业流行使用的框架整合方案)

    ssm整合源代码框架,内附注释

    SSM整合是Java Web开发中常见的技术组合,它包含了Spring、Spring MVC和MyBatis三个核心框架。这个压缩包中的源代码提供了一个完整的SSM整合示例,内附注释,便于理解和学习。 首先,Spring作为核心的依赖注入(DI...

    ssm整合.zip ssm整合 maven项目

    SSM整合指的是将Spring、SpringMVC和MyBatis三个框架进行集成,以构建Java Web应用程序。这个"ssm整合.zip"文件是一个基于Maven构建的项目,它包含了完成SSM整合所需的所有组件和配置。在Java开发环境中,IDEA...

    SSM整合超市订单管理系统

    SSM整合指的是Spring、SpringMVC和MyBatis三个开源框架的集成,它们共同构建了一个强大的Web应用程序开发模型。在本项目"SSM整合超市订单管理系统"中,这三者协同工作,为实现一个功能完善的超市订单管理平台提供了...

    ssm整合jar包

    SSM整合指的是Spring、SpringMVC和MyBatis三个开源框架的集成,它们共同构建了一个强大的Java Web开发解决方案。在Java开发中,SSM整合能够帮助开发者高效地处理业务逻辑,实现模型-视图-控制器(MVC)的设计模式,...

    SSM整合实现分页以及单元测试代码

    SSM整合指的是Spring、SpringMVC和MyBatis三个开源框架的集成,这在Java Web开发中是非常常见的一种架构模式。下面将详细讲解SSM整合的实现过程,以及如何在这个基础上实现分页功能和进行单元测试。 首先,SSM整合...

    maven+ssm整合

    SSM整合则是将这三个框架结合在一起,形成一个完整的后端开发解决方案。 **Spring框架**是企业级Java应用的核心框架,它提供了依赖注入(DI)和面向切面编程(AOP)等核心功能。依赖注入允许开发者在运行时动态地将...

    ssm整合Jar包

    SSM整合指的是Spring、Struts和MyBatis三个开源框架的集成,这是一套常见的Java Web开发技术栈。在这个"ssm整合Jar包"中,我们可以看到一系列与SSM整合相关的库,这些库分别承担了不同的职责。 1. **Hibernate-Core...

    SSM整合中的Log4j日志的配置详情

    Log4j 在 SSM 整合中的配置详解 Log4j 是一个功能强大且广泛使用的日志记录工具,特别是在 SSM(Spring、Spring MVC、Mybatis)整合项目中,合理地配置 Log4j 对项目的日志记录和输出至关重要。本文将详细介绍 SSM...

    ssm整合demo代码

    在这个"ssm整合demo代码"中,我们可以学习到以下几个关键知识点: 1. **Spring框架**:Spring是Java企业级应用的核心框架,它提供了AOP(面向切面编程)、DI(依赖注入)以及对其他框架的集成支持。在SSM整合中,...

    Shiro与SSM整合(内含详细文档介绍)

    本资料包将深入讲解如何将Shiro与SSM整合,以实现更高效、灵活的安全管理。 Shiro是一款轻量级的Java安全框架,它的主要优势在于其简洁的API和易于理解和使用的设计。Shiro提供了用户认证、权限授权、会话管理以及...

    SSM整合的例子

    SSM整合指的是Spring、Spring MVC和MyBatis三个开源框架的集成应用,广泛用于构建Java Web项目。这个整合例子将帮助我们理解这三个组件如何协同工作,以实现数据访问、业务逻辑处理以及视图渲染。 首先,Spring是...

    SSM整合开发,简单易学

    SSM整合是Java web开发中常见的一种框架集成方式,它结合了Spring、Spring MVC和MyBatis三个强大的开源框架,为开发者提供了高效且灵活的后端开发环境。在这个"SSM整合开发,简单易学"的主题中,我们将深入探讨这三...

    mavan+ssm整合demo

    本整合项目“mavan+ssm整合demo”提供了一个可以直接运行的示例,方便开发者快速理解和学习SSM与Maven的结合使用。 1. **Spring框架**:Spring是Java领域的一个全功能的框架,核心特性包括依赖注入(DI)和面向切面...

    SSM整合案例

    SSM整合,全称为Spring、SpringMVC和MyBatis的整合,是Java Web开发中常见的一种技术栈组合。Spring作为一个全面的轻量级应用框架,负责管理对象和依赖注入;SpringMVC作为Spring的Web模块,处理HTTP请求和响应;...

Global site tag (gtag.js) - Google Analytics