在这里我是采用的是mysql数据库
编译器版本采用的是jdk使用的是1.8
开发工具是使用的是eclipse Mars版本
web容器采用的是tomcat 版本是7.0版本
在这里我将我自己写好的Demo工程目录结构截图展示出来方便大家新建项目
这张图图片清晰地将我的工程清晰地展示出来,先简单介绍下吧 ,项目主包是以com.cntv开始的 。在之下又分为好几个子包,分别是mapper、controller、service、dao、mapper、logs、config、base、entity、test包,其中controller包是负责接收前台请求执行部分业务逻辑的action,熟悉struts框架的应该知道Action哈 在这里我就不详细说了。mapper包主要是负责mybatis框架实体映射,config包是主要存储项目配置文件。 其他的包就不一一介绍了,都是些常规的包。
到此为止 jar包已准备完毕 现在就来开始准备框架的相关的配置了 首先是Spring+mybatis关联的配置
在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
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
直到这里我们已经把框架配置好了现在我们就要写一些实在的东西了 把接口和service定一下
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);
}
package com.cntv.service;
import com.cntv.entity.User;
public interface IUserService {
public User getUserById(int userId);
}
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;
}
}
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}
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;
}
}
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层到底能不能打通吧
再来对照下数据库中数据吧!!
经过测试持久层和业务层是能互通的 测试通过!!!!
啦啦啦! 现在测试前后台数据能不能互通了 ....
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
Insert title here
Test formMait
到后台来看看控制台有什么反应木有??
哈哈哈 前台输入的账号密码成功到达后台controlLee并打印出来了!
测试圆满成功!!!
现在我们就可以根据业务需求来做我们自己想做的事情了,后台框架搭建完成了,如果需要其他相关配置可以查阅其他资料完成配置。
项目全部jar包下载地址是:http://download.csdn.net/detail/jason763/9646274 下载这个文件就可以了 按照我说的配置就可以用了。
项目源码地址为:http://download.csdn.net/detail/jason763/9646304 如有需要可以下载源码。
注:本博文为博主原创,未经允许不得转载。