符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
这篇文章给大家分享的是有关SpringMVC+myBatis如何结合使用的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
创新互联主要从事成都网站建设、网站建设、网页设计、企业做网站、公司建网站等业务。立足成都服务铜梁,10年网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:18980820575
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | package com.wg.test;
import javax.servlet.http.HttpServletRequest; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.servlet.ModelAndView; import com.wg.bean.User; import com.wg.service.UserService;
@Controller public class UserController {
@Autowired private UserService userService;
@RequestMapping(value = "regist", method = RequestMethod.POST) public ModelAndView regist(HttpServletRequest request, User user) { try { userService.saveUser(user); } catch (Exception e) { e.printStackTrace(); } request.setAttribute("username", user.getUsername()); request.setAttribute("password", user.getPassword()); System.out.println(user.toString()); return new ModelAndView("succ"); }
/*** * 用户登陆 *
* 注解配置,只允许POST提交到该方法 * * @param username * @param password * @return */ @RequestMapping(value = "login", method = RequestMethod.POST) public ModelAndView login(String username, String password) { // 验证传递过来的参数是否正确,否则返回到登陆页面。 if (this.checkParams(new String[] { username, password })) { // 指定要返回的页面为succ.jsp ModelAndView mav = new ModelAndView("succ"); // 将参数返回给页面 mav.addObject("username", username); mav.addObject("password", password); System.out .println("username=" + username + " password=" + password); return mav; } return new ModelAndView("home"); }
/*** * 验证参数是否为空 * * @param params * @return */ private boolean checkParams(String[] params) { for (String param : params) { if (param == "" || param == null || param.isEmpty()) { return false; } } return true; } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
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_3_0.xsd"> org.springframework.web.context.ContextLoaderListener /WEB-INF/classes/mvc-context.xml |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
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/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> class="org.springframework.web.servlet.view.UrlBasedViewResolver"> value="org.springframework.web.servlet.view.JstlView" /> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
select id, username, password From user username =#{username} and password =#{password}
and id=#{id}
insert into user(id,username,password) values(#{id},#{username},#{password}) select last_insert_id() as id
update user
where id=#{id}
delete from user where id=#{id}
|
感谢各位的阅读!关于“SpringMVC+myBatis如何结合使用”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!