如何搭建SSM(SpringMvc+mybatis+Spring)java web工程

No.1   首先将web工程结构建好

1.1.1 开发环境介绍

 在这里我是采用的是mysql数据库 

  编译器版本采用的是jdk使用的是1.8

 开发工具是使用的是eclipse Mars版本

  web容器采用的是tomcat 版本是7.0版本 


  在这里我将我自己写好的Demo工程目录结构截图展示出来方便大家新建项目

如何搭建SSM(SpringMvc+mybatis+Spring)java web工程_第1张图片

这张图图片清晰地将我的工程清晰地展示出来,先简单介绍下吧 ,项目主包是以com.cntv开始的 。在之下又分为好几个子包,分别是mapper、controller、service、dao、mapper、logs、config、base、entity、test包,其中controller包是负责接收前台请求执行部分业务逻辑的action,熟悉struts框架的应该知道Action哈 在这里我就不详细说了。mapper包主要是负责mybatis框架实体映射,config包是主要存储项目配置文件。  其他的包就不一一介绍了,都是些常规的包。


NO.2  准备好相应的jar包

这里我是采用Spring是.2.0版本 mybatis是3.3.0版本的
如何搭建SSM(SpringMvc+mybatis+Spring)java web工程_第2张图片

图中框选的jar包是一些依赖性jar包   不要以为这就是完整的jar包   还有呢....
如何搭建SSM(SpringMvc+mybatis+Spring)java web工程_第3张图片

到此为止 jar包已准备完毕  现在就来开始准备框架的相关的配置了  首先是Spring+mybatis关联的配置

NO.3 配置框架相关功能的配置文件

在src目录中config文件夹中新建spring-mybatis.xml文件 ,通过这个文件集成并关联Spring+mybatis框架

<?xml version="1.0" encoding="UTF-8"?>

	
	
	
	
		
	

	
		
		
		
		
		
		
		
		
		
		
		
		
		
		
	

	
	
		
		
		
	

	
	
		
		
	

	
	
		
	



紧接着在src下config包下新建jdbc.properties文化  把数据库的配置放在这个配置文件里面

driver=com.mysql.jdbc.Driver
url=jdbc:mysql://125.221.225.113:3306/db_zsl
username=demao
password=demao
#定义初始连接数
initialSize=0
#定义最大连接数
maxActive=20
#定义最大空闲
maxIdle=20
#定义最小空闲
minIdle=1
#定义最长等待时间
maxWait=60000

说明:第一行是加载jdbc驱动地址 

第二行是连接数据库 加红色字体是数据库名字  前面是Ip地址+mysql数据库端口号

userName是数据库连接用户名

password是连接数据库密码


接下来配置SpringMvc相关的配置 

还是跟之前一样,在src目录下的config文件夹中新建spring-mvc.xml配置文件 

 这个文件主要是负责Mvc架构视图,前后台数据交互等。



	
	
	
	
		
			
				text/html;charset=UTF-8
			
		
	
	
	
		
			
					
			
		
	 
	
	
		
		
		
	
	
	  

最后配置web.xml文件

项目总配置文件将spring-mybatis.xml和spring-mvc.xml集成到web.xml里面



	Archetype Created Web Application
	
	
		contextConfigLocation
		classpath:spring-mybatis.xml
	
	
	
		encodingFilter
		org.springframework.web.filter.CharacterEncodingFilter
		true
		
			encoding
			UTF-8
		
	
	
		encodingFilter
		/
	
	
	
		org.springframework.web.context.ContextLoaderListener
	
	
	
		org.springframework.web.util.IntrospectorCleanupListener
	
	
	
		SpringMVC
		org.springframework.web.servlet.DispatcherServlet
		
			contextConfigLocation
			classpath:spring-mvc.xml
		
		1
		true
	
	
		SpringMVC
		
		*.do
	
	
		/index.jsp
	
	
	
		15
	




NO.4 收官完成 测试框架能否正常运行

直到这里我们已经把框架配置好了现在我们就要写一些实在的东西了 把接口和service定一下

4.1.1  定义一个接口 

在dao包下新建IUserDao.java类
package com.cntv.dao;

import org.springframework.stereotype.Repository;

import com.cntv.entity.User;
@Repository
public interface IUserDao {
    int deleteByPrimaryKey(Integer id);

    int insert(User record);

    int insertSelective(User record);

    User selectByPrimaryKey(Integer id);

    int updateByPrimaryKeySelective(User record);

    int updateByPrimaryKey(User record);
}

4.1.2 定义一个service接口

 同样的在service包下新建IUserService.java类
package com.cntv.service;

import com.cntv.entity.User;

public interface IUserService {
	public User getUserById(int userId);
}

4.1.3定义一个javaBean

package com.cntv.entity;
public class User {
    private Integer id;

    private String userName;

    private String password;

    private Integer age;

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getUserName() {
        return userName;
    }

    public void setUserName(String userName) {
        this.userName = userName == null ? null : userName.trim();
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password == null ? null : password.trim();
    }

    public Integer getAge() {
        return age;
    }

    public void setAge(Integer age) {
        this.age = age;
    }
    
}

4.1.4 定义一个mapper.xml实体映射 

很简单,在mapper文件夹下新建UserMapper.xml配置文件



  
    
    
    
    
  
  
    id, user_name, password, age
  
  
  
    delete from user_t
    where id = #{id,jdbcType=INTEGER}
  
  
    insert into user_t (id, user_name, password, 
      age)
    values (#{id,jdbcType=INTEGER}, #{userName,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR}, 
      #{age,jdbcType=INTEGER})
  
  
    insert into user_t
    
      
        id,
      
      
        user_name,
      
      
        password,
      
      
        age,
      
    
    
      
        #{id,jdbcType=INTEGER},
      
      
        #{userName,jdbcType=VARCHAR},
      
      
        #{password,jdbcType=VARCHAR},
      
      
        #{age,jdbcType=INTEGER},
      
    
  
  
    update user_t
    
      
        user_name = #{userName,jdbcType=VARCHAR},
      
      
        password = #{password,jdbcType=VARCHAR},
      
      
        age = #{age,jdbcType=INTEGER},
      
    
    where id = #{id,jdbcType=INTEGER}
  
  
    update user_t
    set user_name = #{userName,jdbcType=VARCHAR},
      password = #{password,jdbcType=VARCHAR},
      age = #{age,jdbcType=INTEGER}
    where id = #{id,jdbcType=INTEGER}
  
这个文件就包含CRUD操作 sql语句在标签中都有定义 ,需要注意的是这里面sql语句用到的一些参数全部是从dao层获取的
mapper文件是映射数据库表对应的javaBean实体 mapper中可以写sql语句 很方便。


4.1.5 定义一个service实现类

在service包下serviceImpl包下新建UserServiceImpl类
package com.cntv.service.serviceImpl;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletResponse;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.stereotype.Service;
import com.cntv.dao.IUserDao;
import com.cntv.entity.User;
import com.cntv.service.IUserService;
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
@Service
public class UserServiceImpl implements IUserService {
	@Resource
	private IUserDao userDao;
	@Override
	public User getUserById(int userId) {
		// TODO Auto-generated method stub
		return this.userDao.selectByPrimaryKey(userId);
	}
   public static void main(String[] args) {
	   ApplicationContext ca= new ClassPathXmlApplicationContext("spring-mybatis.xml");
	   UserServiceImpl u=(UserServiceImpl) ca.getBean("userServiceImpl");
	  User ue= u.getUserById(12);
	   System.out.println("用户名:"+ue.getUserName());
	   System.out.println("用户密码:"+ue.getPassword());
}
public IUserDao getUserDao() {
	return userDao;
}
public void setUserDao(IUserDao userDao) {
	this.userDao = userDao;
}
   
}

4.1.6 定义一个controller

在src目录下的controller包下新建一个controller,在这里我新建的是UserController.java
package com.cntv.controller;

import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.coyote.Request;
import org.springframework.http.HttpRequest;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;

import com.cntv.entity.User;
import com.cntv.service.serviceImpl.UserServiceImpl;

@Controller
public class UserController {
	@Resource
	private UserServiceImpl userService;
	@RequestMapping("test.do")
	public ModelAndView  testCon(HttpServletRequest request,Model model){
		System.out.println("hello");
		System.out.println(request.getParameter("id"));
		User u=userService.getUserById(new Integer(request.getParameter("id")));
		System.out.println(u.getUserName());
		ModelAndView mod=new ModelAndView();
		mod.setViewName("success");
		return mod;
	}
	/**
	 * @deprecated
	 * 根据前台封装的javaBean属性进行封装  这里是进行User对象的封装
	 * 测试后台是否能正常能拿到数据       
	 * @param user 获取前台穿过来的对象
	 * @param request
	 * @return
	 */
	@RequestMapping("submit.do")
	public String testBean(User user,HttpServletRequest request){
		System.out.println("========+"+user.getUserName()+"..."+user.getPassword());
		return "success";
		
	}
	public UserServiceImpl getUserService() {
		return userService;
	}
	public void setUserService(UserServiceImpl userService) {
		this.userService = userService;
	}
	
}


Ok!!!现在就来测试下吧后台数据库和service层到底能不能打通吧  


如何搭建SSM(SpringMvc+mybatis+Spring)java web工程_第4张图片

再来对照下数据库中数据吧!!

如何搭建SSM(SpringMvc+mybatis+Spring)java web工程_第5张图片

 经过测试持久层和业务层是能互通的 测试通过!!!!

  

啦啦啦!  现在测试前后台数据能不能互通了  ....


前端新建一个jsp测试页面  测试请求和数据能不能到达后台controller里面
在这里我新建的是eg.jsp

<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>





Insert title here



Test formMait

账户
密码

重点来了!!!测试前台数据和请求能不能到达后台

>>>>>>输入 http://127.0.0.1:8080/SpringMybat/eg.jsp 进入测试页面 
如何搭建SSM(SpringMvc+mybatis+Spring)java web工程_第6张图片

到后台来看看控制台有什么反应木有??

如何搭建SSM(SpringMvc+mybatis+Spring)java web工程_第7张图片


哈哈哈  前台输入的账号密码成功到达后台controlLee并打印出来了!

测试圆满成功!!!


现在我们就可以根据业务需求来做我们自己想做的事情了,后台框架搭建完成了,如果需要其他相关配置可以查阅其他资料完成配置。



项目全部jar包下载地址是:http://download.csdn.net/detail/jason763/9646274 下载这个文件就可以了   按照我说的配置就可以用了。

项目源码地址为:http://download.csdn.net/detail/jason763/9646304 如有需要可以下载源码。

注:本博文为博主原创,未经允许不得转载。

你可能感兴趣的:(如何搭建SSM(SpringMvc+mybatis+Spring)java web工程)