Hierbate 3.3+Spring 3.1 +SpringMVC+Myeclipse 10集成框架搭建

一.环境配置

1.myeclipse 10
2.springmvc (Spring web)
3.spring3.1(Spring core)
4.Hibernate 3.3(3.3+支持注解功能,3.3-不支持注解功能)
5.jackson-Core-1.9

二.创建Java Web项目

三.相关包导入(Spring包)

使用myeclipse集成环境自动导入相关包
这里写图片描述

四.web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
    http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
    <display-name></display-name>
    <!-- 上下文配置文件 -->
    <context-param>
        <description>spring config</description>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/classes/applicationContext.xml</param-value>
    </context-param>
    <listener>
        <description>spring listerner</description>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

    <!-- 配置spring mvc的相关内容,此处的servlet-name任意,但必须有<your servlet-name>-servlet.xml与之对应 -->
    <servlet>
        <servlet-name>springmvc</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>springmvc</servlet-name>
        <!-- 配置对应以.do结尾的请求 -->
        <url-pattern>/</url-pattern>
    </servlet-mapping>

    <!-- 配置过滤器,同时把所有的请求都转为utf-8编码 -->
    <filter>
        <filter-name>Spring character encoding filter</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>Spring character encoding filter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

    <!-- 配置项目主页 -->
    <session-config>
        <session-timeout>30</session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
</web-app>

五.使用myeclipse中hibernate视图配置数据库文件

六.导入Hibernate相关包并使用myeclipse自动生成相关文件dao、bean、spring配置文件

这里写图片描述

<!--applicationcontext.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"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd">


    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver">
        </property>
        <property name="url" value="jdbc:mysql://192.168.136.96:3306/clubmanager">
        </property>
        <property name="username" value="root"></property>
        <property name="password" value="sdust"></property>
    </bean>
    <bean id="sessionFactory"
        class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
        <property name="dataSource">
            <ref bean="dataSource" />
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">
                    org.hibernate.dialect.MySQLDialect
                </prop>
                <prop key="hibernate.show_sql">true</prop>
            </props>
        </property>
        <property name="mappingResources">
            <list>
                <value>com/clubmanager/bean/Member.hbm.xml</value>
                <value>com/clubmanager/bean/Part.hbm.xml</value>
                <value>com/clubmanager/bean/Power.hbm.xml</value>
                <value>com/clubmanager/bean/College.hbm.xml</value>
                <value>com/clubmanager/bean/User.hbm.xml</value>
                <value>com/clubmanager/bean/News.hbm.xml</value>
                <value>com/clubmanager/bean/Club.hbm.xml</value>
            </list>
        </property>

    </bean>
    <bean id="MemberDAO" class="com.clubmanager.dao.MemberDAO">
        <property name="sessionFactory">
            <ref bean="sessionFactory" />
        </property>
    </bean>
    <bean id="PartDAO" class="com.clubmanager.dao.PartDAO">
        <property name="sessionFactory">
            <ref bean="sessionFactory" />
        </property>
    </bean>
    <bean id="PowerDAO" class="com.clubmanager.dao.PowerDAO">
        <property name="sessionFactory">
            <ref bean="sessionFactory" />
        </property>
    </bean>
    <bean id="CollegeDAO" class="com.clubmanager.dao.CollegeDAO">
        <property name="sessionFactory">
            <ref bean="sessionFactory" />
        </property>
    </bean>
    <bean id="UserDAO" class="com.clubmanager.dao.UserDAO">
        <property name="sessionFactory">
            <ref bean="sessionFactory" />
        </property>
    </bean>
    <bean id="NewsDAO" class="com.clubmanager.dao.NewsDAO">
        <property name="sessionFactory">
            <ref bean="sessionFactory" />
        </property>
    </bean>
    <bean id="ClubDAO" class="com.clubmanager.dao.ClubDAO">
        <property name="sessionFactory">
            <ref bean="sessionFactory" />
        </property>
    </bean>
</beans>

七.Spring-servlet.xml文件配置

<!--spring-servlet.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:mvc="http://www.springframework.org/schema/mvc" 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.xsd    
      http://www.springframework.org/schema/mvc    
      http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
    <context:annotation-config />
    <mvc:annotation-driven />
    <mvc:resources location="/image/" mapping="/image/**" />
    <mvc:resources location="/css/" mapping="/css/**" />
    <mvc:resources location="/js/" mapping="/js/**" />
    <!-- 对定义包中的所有类进行扫描,以完成Bean创建和自动依赖注入的功能 -->
    <context:component-scan base-package="com.clubmanager.admin.controller"></context:component-scan>
    <context:component-scan base-package="com.clubmanager.admin.service"></context:component-scan>
    <context:component-scan base-package="com.clubmanager.info.controller"></context:component-scan>
    <context:component-scan base-package="com.clubmanager.info.service"></context:component-scan>
    <context:component-scan base-package="com.clubmanager.bean"></context:component-scan>
    <context:component-scan base-package="com.clubmanager.dao"></context:component-scan>

    <!-- 启动spring mvc的注解功能,完成请求和注解POJO的映射 -->
    <bean
        class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
        <!-- 配置信息转换,将用@responsebody注解的返回值转换为json返回前台,编码为utf-8 -->
        <property name="messageConverters">
            <list>
                <bean
                    class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
                    <property name="supportedMediaTypes">
                        <list>
                            <value>application/json;charset=UTF-8</value>
                        </list>
                    </property>
                </bean>
            </list>
        </property>
    </bean>
</beans>

八.controller层、Service层配置

//controller
package com.clubmanager.admin.controller;

import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Controller;
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.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.view.json.MappingJacksonJsonView;

import com.clubmanager.admin.service.ClubService;


@Controller
@RequestMapping("/admin")
public class ClubController {

    @Autowired
    @Qualifier("ClubService")
    private ClubService clubservice;

    @ResponseBody
    @RequestMapping(value="/addclub.do",method={RequestMethod.GET,RequestMethod.POST})
    public ModelAndView addClub(@RequestParam Integer partid,@RequestParam String clubname,@RequestParam String teacher,
            @RequestParam String clubmanager,@RequestParam String describe,@RequestParam String buildtime){
        System.out.println("enter addclub controller!");
        Map<String,Object> result =new HashMap<String,Object>();
        try {
            System.out.println(partid+clubname+clubmanager+teacher+buildtime+"0"+describe);
            this.clubservice.addClub(partid, clubname, clubmanager, teacher, buildtime+" 00:00:00", "0", describe);
            result.put("result","success");
        } catch (Exception e) {
            // TODO Auto-generated catch block
            result.put("result","error");
            result.put("msg", e.toString());
            e.printStackTrace();
        }
        return  new ModelAndView(new MappingJacksonJsonView(),result);
    }

    @ResponseBody
    @RequestMapping(value="/getclublist.do",method={RequestMethod.GET,RequestMethod.POST})
    public ModelAndView getClubList(){
        Map<String,Object> result = new HashMap<String,Object>();
          List l;
        try {
            l = this.clubservice.getClubList();
            result.put("msg",l);
            result.put("result","success");
        } catch (Exception e) {
            // TODO Auto-generated catch block
            result.put("result","error");
            result.put("msg",e.toString());
            e.printStackTrace();
        }

        return new ModelAndView(new MappingJacksonJsonView(),result);
    }

}
//service interface
package com.clubmanager.admin.service;

import java.util.List;

public interface ClubService {
    public boolean addClub(Integer partid,String clubname,String charger,String teacher,String buildtime,String status,String describe) throws Exception;
    public List getClubList() throws Exception;
}
// Service 实现
package com.clubmanager.admin.service;

import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;

import javax.annotation.Resource;
import javax.print.attribute.HashAttributeSet;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import com.clubmanager.bean.Club;
import com.clubmanager.bean.Part;
import com.clubmanager.dao.ClubDAO;
import com.clubmanager.dao.PartDAO;


@Service("ClubService")
public class ClubServiceImpl implements ClubService{

    @Autowired
    @Resource(name="PartDAO")
    private PartDAO partdao;
    @Autowired
    @Resource(name="ClubDAO")
    private ClubDAO clubdao;
    public boolean addClub(Integer partid, String clubname, String charger,
            String teacher, String buildtime, String status, String describe)
            throws Exception {
        // TODO Auto-generated method stub
        Part p=this.partdao.findById(partid);
        Club c= new Club(p, clubname, charger, teacher,Timestamp.valueOf(buildtime), Integer.parseInt(status), describe,new HashSet());
        this.clubdao.save(c);
        return false;
    }
    public List getClubList() throws Exception{
        List result =  new ArrayList<Object>();

        List<Club> ca=this.clubdao.findAll();
        for(Club c : ca){
            Map m =new HashMap<String,Object>();
            m.put("id", c.getClubid().toString());
            m.put("name", c.getName());
            m.put("charger", c.getCharger());
            m.put("teacher", c.getChargeteacher());
            m.put("regtime", c.getRegtime().toString());
            m.put("status", c.getStatus().toString());
            result.add(m);
        }
        return result;

    }


}

九.注意

controller里面的函数返回JSON形式数据时,注意不要使用错误的包,这里使用的是Jacson-core包里面相关函数;

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值