码迷,mamicode.com
首页 > 编程语言 > 详细

基于spring mvc的注解DEMO完整例子

时间:2016-08-17 11:57:22      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:

弃用了struts,用spring mvc框架做了几个项目,感觉都不错,而且使用了注解方式,可以省掉一大堆配置文件。本文主要介绍使用注解方式配置的spring mvc,之前写的spring3.0 mvc和rest小例子没有介绍到数据层的内容,现在这一篇补上。下面开始贴代码。

文中用的框架版本:spring 3,hibernate 3,没有的,自己上网下。

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>s3h3</display-name>   
技术分享   <context-param>     
技术分享     <param-name>contextConfigLocation</param-name>     
技术分享     <param-value>classpath:applicationContext*.xml</param-value>     
技术分享 </context-param>     
技术分享  <listener>     
技术分享     <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>     
技术分享 </listener>     
技术分享  
技术分享 <servlet>     
技术分享     <servlet-name>spring</servlet-name>     
技术分享     <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>     
技术分享     <load-on-startup>1</load-on-startup>     
技术分享 </servlet>     
技术分享 <servlet-mapping>     
技术分享     <servlet-name>spring</servlet-name>  <!-- 这里在配成spring,下边也要写一个名为spring-servlet.xml的文件,主要用来配置它的controller -->   
技术分享     <url-pattern>*.do</url-pattern>     
技术分享 </servlet-mapping>     
技术分享  <welcome-file-list>   
技术分享    <welcome-file>index.jsp</welcome-file>   
技术分享  </welcome-file-list>   
技术分享</web-app>  
技术分享

 

spring-servlet,主要配置controller的信息

技术分享<?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"     
技术分享   xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd   
技术分享       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd   
技术分享       http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd   
技术分享       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">   
技术分享     
技术分享  <context:annotation-config />   
技术分享       <!-- 把标记了@Controller注解的类转换为bean -->     
技术分享      <context:component-scan base-package="com.mvc.controller" />     
技术分享  <!-- 启动Spring MVC的注解功能,完成请求和注解POJO的映射 -->     
技术分享      <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" />     
技术分享        
技术分享       <!-- 对模型视图名称的解析,即在模型视图名称添加前后缀 -->     
技术分享       <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"     
技术分享          p:prefix="/WEB-INF/view/" p:suffix=".jsp" />     
技术分享           
技术分享       <bean id="multipartResolver"     
技术分享          class="org.springframework.web.multipart.commons.CommonsMultipartResolver"     
技术分享          p:defaultEncoding="utf-8" />     
技术分享 </beans>  
技术分享

 

applicationContext.xml代码

技术分享<?xml version="1.0" encoding="UTF-8"?>   
技术分享<beans xmlns="http://www.springframework.org/schema/beans"  
技术分享 xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context"  
技术分享 xmlns:p="http://www.springframework.org/schema/p" 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-3.0.xsd   
技术分享   http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd   
技术分享   http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd   
技术分享   http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">   
技术分享  
技术分享 <context:annotation-config />   
技术分享 <context:component-scan base-package="com.mvc" />  <!-- 自动扫描所有注解该路径 -->   
技术分享  
技术分享 <context:property-placeholder location="classpath:/hibernate.properties" />   
技术分享  
技术分享 <bean id="sessionFactory"  
技术分享  class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">   
技术分享  <property name="dataSource" ref="dataSource" />   
技术分享  <property name="hibernateProperties">   
技术分享   <props>   
技术分享    <prop key="hibernate.dialect">${dataSource.dialect}</prop>   
技术分享    <prop key="hibernate.hbm2ddl.auto">${dataSource.hbm2ddl.auto}</prop>   
技术分享    <prop key="hibernate.hbm2ddl.auto">update</prop>   
技术分享   </props>   
技术分享  </property>   
技术分享  <property name="packagesToScan">   
技术分享   <list>   
技术分享    <value>com.mvc.entity</value><!-- 扫描实体类,也就是平时所说的model -->   
技术分享   </list>   
技术分享    </property>   
技术分享 </bean>   
技术分享  
技术分享 <bean id="transactionManager"  
技术分享  class="org.springframework.orm.hibernate3.HibernateTransactionManager">   
技术分享  <property name="sessionFactory" ref="sessionFactory" />   
技术分享  <property name="dataSource" ref="dataSource" />   
技术分享 </bean>   
技术分享  
技术分享 <bean id="dataSource"  
技术分享  class="org.springframework.jdbc.datasource.DriverManagerDataSource">   
技术分享  <property name="driverClassName" value="${dataSource.driverClassName}" />   
技术分享  <property name="url" value="${dataSource.url}" />   
技术分享  <property name="username" value="${dataSource.username}" />   
技术分享  <property name="password" value="${dataSource.password}" />   
技术分享 </bean>   
技术分享 <!-- Dao的实现 -->   
技术分享 <bean id="entityDao" class="com.mvc.dao.EntityDaoImpl">     
技术分享  <property name="sessionFactory" ref="sessionFactory" />   
技术分享 </bean>   
技术分享 <tx:annotation-driven transaction-manager="transactionManager" />   
技术分享 <tx:annotation-driven mode="aspectj"/>   
技术分享     
技术分享    <aop:aspectj-autoproxy/>     
技术分享</beans>  
技术分享

 

hibernate.properties数据库连接配置

技术分享dataSource.password=123  
技术分享dataSource.username=root   
技术分享dataSource.databaseName=test   
技术分享dataSource.driverClassName=com.mysql.jdbc.Driver   
技术分享dataSource.dialect=org.hibernate.dialect.MySQL5Dialect   
技术分享dataSource.serverName=localhost:3306  
技术分享dataSource.url=jdbc:mysql://localhost:3306/test   
技术分享dataSource.properties=user=${dataSource.username};databaseName=${dataSource.databaseName};serverName=${dataSource.serverName};password=${dataSource.password}   
技术分享dataSource.hbm2ddl.auto=update  
技术分享

 

配置已经完成,下面开始例子
先在数据库建表,例子用的是mysql数据库

技术分享CREATE TABLE  `test`.`student` (   
技术分享  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,   
技术分享  `name` varchar(45) NOT NULL,   
技术分享  `psw` varchar(45) NOT NULL,   
技术分享  PRIMARY KEY (`id`)   
技术分享)  
技术分享

 

建好表后,生成实体类

技术分享package com.mvc.entity;   
技术分享  
技术分享import java.io.Serializable;   
技术分享  
技术分享import javax.persistence.Basic;   
技术分享import javax.persistence.Column;   
技术分享import javax.persistence.Entity;   
技术分享import javax.persistence.GeneratedValue;   
技术分享import javax.persistence.GenerationType;   
技术分享import javax.persistence.Id;   
技术分享import javax.persistence.Table;   
技术分享  
技术分享@Entity  
技术分享@Table(name = "student")   
技术分享public class Student implements Serializable {   
技术分享    private static final long serialVersionUID = 1L;   
技术分享    @Id  
技术分享    @Basic(optional = false)   
技术分享    @GeneratedValue(strategy = GenerationType.IDENTITY)   
技术分享    @Column(name = "id", nullable = false)   
技术分享    private Integer id;   
技术分享    @Column(name = "name")   
技术分享    private String user;   
技术分享    @Column(name = "psw")   
技术分享    private String psw;   
技术分享    public Integer getId() {   
技术分享        return id;   
技术分享    }   
技术分享    public void setId(Integer id) {   
技术分享        this.id = id;   
技术分享    }   
技术分享       
技术分享    public String getUser() {   
技术分享        return user;   
技术分享    }   
技术分享    public void setUser(String user) {   
技术分享        this.user = user;   
技术分享    }   
技术分享    public String getPsw() {   
技术分享        return psw;   
技术分享    }   
技术分享    public void setPsw(String psw) {   
技术分享        this.psw = psw;   
技术分享    }   
技术分享}  
技术分享


Dao层实现

技术分享package com.mvc.dao;   
技术分享  
技术分享import java.util.List;   
技术分享  
技术分享public interface EntityDao {   
技术分享    public List<Object> createQuery(final String queryString);   
技术分享    public Object save(final Object model);   
技术分享    public void update(final Object model);   
技术分享    public void delete(final Object model);   
技术分享}  
技术分享

 

技术分享package com.mvc.dao;   
技术分享  
技术分享import java.util.List;   
技术分享  
技术分享import org.hibernate.Query;   
技术分享import org.springframework.orm.hibernate3.HibernateCallback;   
技术分享import org.springframework.orm.hibernate3.support.HibernateDaoSupport;   
技术分享  
技术分享public class EntityDaoImpl extends HibernateDaoSupport implements EntityDao{   
技术分享    public List<Object> createQuery(final String queryString) {   
技术分享        return (List<Object>) getHibernateTemplate().execute(   
技术分享                new HibernateCallback<Object>() {   
技术分享                    public Object doInHibernate(org.hibernate.Session session)   
技术分享                            throws org.hibernate.HibernateException {   
技术分享                        Query query = session.createQuery(queryString);   
技术分享                        List<Object> rows = query.list();   
技术分享                        return rows;   
技术分享                    }   
技术分享                });   
技术分享    }   
技术分享    public Object save(final Object model) {   
技术分享        return  getHibernateTemplate().execute(   
技术分享                new HibernateCallback<Object>() {   
技术分享                    public Object doInHibernate(org.hibernate.Session session)   
技术分享                            throws org.hibernate.HibernateException {   
技术分享                        session.save(model);   
技术分享                        return null;   
技术分享                    }   
技术分享                });   
技术分享    }   
技术分享    public void update(final Object model) {   
技术分享        getHibernateTemplate().execute(new HibernateCallback<Object>() {   
技术分享            public Object doInHibernate(org.hibernate.Session session)   
技术分享                    throws org.hibernate.HibernateException {   
技术分享                session.update(model);   
技术分享                return null;   
技术分享            }   
技术分享        });   
技术分享    }   
技术分享    public void delete(final Object model) {   
技术分享        getHibernateTemplate().execute(new HibernateCallback<Object>() {   
技术分享            public Object doInHibernate(org.hibernate.Session session)   
技术分享                    throws org.hibernate.HibernateException {   
技术分享                session.delete(model);   
技术分享                return null;   
技术分享            }   
技术分享        });   
技术分享    }   
技术分享}  
技术分享


Dao在applicationContext.xml注入

技术分享<bean id="entityDao" class="com.mvc.dao.EntityDaoImpl">  
技术分享  <property name="sessionFactory" ref="sessionFactory" />
技术分享 </bean>
技术分享
技术分享

 

Dao只有一个类的实现,直接供其它service层调用,如果你想更换为其它的Dao实现,也只需修改这里的配置就行了。
开始写view页面,WEB-INF/view下新建页面student.jsp,WEB-INF/view这路径是在spring-servlet.xml文件配置的,你可以配置成其它,也可以多个路径。student.jsp代码

技术分享<%@ page language="java" contentType="text/html; charset=UTF-8"  
技术分享    pageEncoding="UTF-8"%>  
技术分享<%@ include file="/include/head.jsp"%>  
技术分享<!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>  
技术分享<script language="javascript" src="<%=request.getContextPath()%><!--   
技术分享/script/jquery.min.js">  
技术分享// --></script>  
技术分享<style><!--   
技术分享table{  border-collapse:collapse;  }   
技术分享td{  border:1px solid #f00;  }   
技术分享--></style><style mce_bogus="1">table{  border-collapse:collapse;  }   
技术分享td{  border:1px solid #f00;  }</style>  
技术分享<script type="text/javascript"><!--   
技术分享function add(){   
技术分享    window.location.href="<%=request.getContextPath() %>/student.do?method=add";   
技术分享}   
技术分享  
技术分享function del(id){   
技术分享$.ajax( {   
技术分享    type : "POST",   
技术分享    url : "<%=request.getContextPath()%>/student.do?method=del&id=" + id,   
技术分享    dataType: "json",   
技术分享    success : function(data) {   
技术分享        if(data.del == "true"){   
技术分享            alert("删除成功!");   
技术分享            $("#" + id).remove();   
技术分享        }   
技术分享        else{   
技术分享            alert("删除失败!");   
技术分享        }   
技术分享    },   
技术分享    error :function(){   
技术分享        alert("网络连接出错!");   
技术分享    }   
技术分享});   
技术分享}   
技术分享// --></script>  
技术分享</head>  
技术分享<body>  
技术分享  
技术分享<input id="add" type="button" onclick="add()" value="添加"/>  
技术分享<table >  
技术分享    <tr>  
技术分享        <td>序号</td>  
技术分享        <td>姓名</td>  
技术分享        <td>密码</td>  
技术分享        <td>操作</td>  
技术分享    </tr>  
技术分享    <c:forEach items="${list}" var="student">  
技术分享    <tr id="<c:out value="${student.id}"/>">  
技术分享        <td><c:out value="${student.id}"/></td>  
技术分享        <td><c:out value="${student.user}"/></td>  
技术分享        <td><c:out value="${student.psw}"/></td>  
技术分享        <td>  
技术分享            <input type="button" value="编辑"/>        
技术分享            <input type="button" onclick="del(‘<c:out value="${student.id}"/>‘)" value="删除"/>  
技术分享        </td>  
技术分享    </tr>  
技术分享    </c:forEach>  
技术分享       
技术分享</table>  
技术分享</body>  
技术分享</html>  
技术分享

 

student_add.jsp

技术分享<%@ page language="java" contentType="text/html; charset=UTF-8"  
技术分享    pageEncoding="UTF-8"%>  
技术分享<%@ include file="/include/head.jsp"%>  
技术分享<!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>  
技术分享<mce:script type="text/javascript"><!--   
技术分享function turnback(){   
技术分享    window.location.href="<%=request.getContextPath() %>/student.do";   
技术分享}   
技术分享// --></mce:script>  
技术分享</head>  
技术分享<body>  
技术分享<form method="post" action="<%=request.getContextPath() %>/student.do?method=save">  
技术分享<div><c:out value="${addstate}"></c:out></div>  
技术分享<table>  
技术分享    <tr><td>姓名</td><td><input id="user" name="user" type="text" /></td></tr>  
技术分享    <tr><td>密码</td><td><input id="psw" name="psw"  type="text" /></td></tr>  
技术分享    <tr><td colSpan="2" align="center"><input type="submit" value="提交"/><input type="button" onclick="turnback()" value="返回" /> </td></tr>  
技术分享</table>  
技术分享  
技术分享</form>  
技术分享</body>  
技术分享</html>  
技术分享

 

controller类实现,只需把注解写上,spring就会自动帮你找到相应的bean,相应的注解标记意义,不明白的,可以自己查下@Service,@Controller,@Entity等等的内容。

技术分享package com.mvc.controller;   
技术分享  
技术分享import java.util.List;   
技术分享  
技术分享import javax.servlet.http.HttpServletRequest;   
技术分享import javax.servlet.http.HttpServletResponse;   
技术分享  
技术分享import org.apache.commons.logging.Log;   
技术分享import org.apache.commons.logging.LogFactory;   
技术分享import org.springframework.beans.factory.annotation.Autowired;   
技术分享import org.springframework.stereotype.Controller;   
技术分享import org.springframework.ui.ModelMap;   
技术分享import org.springframework.web.bind.annotation.RequestMapping;   
技术分享import org.springframework.web.bind.annotation.RequestMethod;   
技术分享import org.springframework.web.bind.annotation.RequestParam;   
技术分享import org.springframework.web.servlet.ModelAndView;   
技术分享  
技术分享import com.mvc.entity.Student;   
技术分享import com.mvc.service.StudentService;   
技术分享  
技术分享@Controller  
技术分享@RequestMapping("/student.do")   
技术分享public class StudentController {   
技术分享    protected final transient Log log = LogFactory   
技术分享    .getLog(StudentController.class);   
技术分享    @Autowired  
技术分享    private StudentService studentService;   
技术分享    public StudentController(){   
技术分享           
技术分享    }   
技术分享       
技术分享    @RequestMapping  
技术分享    public String load(ModelMap modelMap){   
技术分享        List<Object> list = studentService.getStudentList();   
技术分享        modelMap.put("list", list);   
技术分享        return "student";   
技术分享    }   
技术分享       
技术分享    @RequestMapping(params = "method=add")   
技术分享    public String add(HttpServletRequest request, ModelMap modelMap) throws Exception{   
技术分享        return "student_add";   
技术分享    }   
技术分享       
技术分享    @RequestMapping(params = "method=save")   
技术分享    public String save(HttpServletRequest request, ModelMap modelMap){   
技术分享        String user = request.getParameter("user");   
技术分享        String psw = request.getParameter("psw");   
技术分享        Student st = new Student();   
技术分享        st.setUser(user);   
技术分享        st.setPsw(psw);   
技术分享        try{   
技术分享            studentService.save(st);   
技术分享            modelMap.put("addstate", "添加成功");   
技术分享        }   
技术分享        catch(Exception e){   
技术分享            log.error(e.getMessage());   
技术分享            modelMap.put("addstate", "添加失败");   
技术分享        }   
技术分享           
技术分享        return "student_add";   
技术分享    }   
技术分享       
技术分享    @RequestMapping(params = "method=del")   
技术分享    public void del(@RequestParam("id") String id, HttpServletResponse response){   
技术分享        try{   
技术分享            Student st = new Student();   
技术分享            st.setId(Integer.valueOf(id));   
技术分享            studentService.delete(st);   
技术分享            response.getWriter().print("{\"del\":\"true\"}");   
技术分享        }   
技术分享        catch(Exception e){   
技术分享            log.error(e.getMessage());   
技术分享            e.printStackTrace();   
技术分享        }   
技术分享    }   
技术分享}  
技术分享

 

service类实现

技术分享package com.mvc.service;   
技术分享  
技术分享import java.util.List;   
技术分享  
技术分享import org.springframework.beans.factory.annotation.Autowired;   
技术分享import org.springframework.stereotype.Service;   
技术分享import org.springframework.transaction.annotation.Transactional;   
技术分享  
技术分享import com.mvc.dao.EntityDao;   
技术分享import com.mvc.entity.Student;   
技术分享  
技术分享@Service  
技术分享public class StudentService {   
技术分享 @Autowired  
技术分享 private EntityDao entityDao;   
技术分享    
技术分享 @Transactional  
技术分享 public List<Object> getStudentList(){   
技术分享  StringBuffer sff = new StringBuffer();   
技术分享  sff.append("select a from ").append(Student.class.getSimpleName()).append(" a ");   
技术分享  List<Object> list = entityDao.createQuery(sff.toString());   
技术分享  return list;   
技术分享 }   
技术分享    
技术分享 public void save(Student st){   
技术分享  entityDao.save(st);   
技术分享 }   
技术分享 public void delete(Object obj){   
技术分享  entityDao.delete(obj);   
技术分享 }   
技术分享

 

OK,例子写完。有其它业务内容,只需直接新建view,并实现相应comtroller和service就行了,配置和dao层的内容基本不变,也就是每次只需写jsp(view),controller和service调用dao就行了。

怎样,看了这个,spring mvc是不是比ssh实现更方便灵活。

基于spring mvc的注解DEMO完整例子

标签:

原文地址:http://www.cnblogs.com/mfc-itblog/p/5779193.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!