Java服务器端编程

Eclipse搭建SpringMVC+Spring+MyBati

2017-10-23  本文已影响116人  AntDream

准备工作

资源文件

安装配置相关的环境

创建第一个项目

部分说明

项目结构示意

如何自己来写业务逻辑

添加自己的路径

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>  
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>  
<!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>Insert title here</title>  
</head>  
<body>  
    <h1>say Hello</h1>  
    <h2>${say}</h2>  
<c:if test="${person!=null}">  
<h1>您好:${person.name}</h1>  
</c:if>  
  
<c:if test="${person==null}">
<h1>对不起,没有取得用户名</h1>  
</c:if>  
  
</body>  
</html>  

添加自己的数据库处理

public interface PersonDao {    
    Person getPersonById(int id);
}
public interface PersonService {
    public Person getPersonById(int id);
}
@Controller
@RequestMapping("/")
public class SearchController {
    
    @Autowired
    private PersonService personService;
    
    @RequestMapping(value="/index", produces="text/html;charset=UTF-8")
    public String getPerson(HttpServletRequest request, HttpServletResponse response){  
        Person person = personService.getPersonById(0);
        request.setAttribute("person", person);
        request.setAttribute("say", "test Say Hello");
        return "index";       
    }  

}

以上就是初次搭建SpringMVC+Spring+MyBatis框架中的一些过程

上一篇 下一篇

猜你喜欢

热点阅读