zoukankan      html  css  js  c++  java
  • 第四天

    第四天
    package com.lzw;
    import javax.servlet.http.HttpServletRequest;
    import javax..servlet.http.HttpServletResponse;
    import org.springframework.vlidation. BindExcpion;
    import org.springframework.web.servlet.ModelAndView;
    import org.springframework.web.servlet.mvc .SimpleFormController;
    public class LoginController extends SimpleFormController {
          protected ModelAndView onSubmit(HttpServletRequest arg0, HttpServletResponse arg1, Object arg2,BindException arg3) throws Exception{
          //TODO自动生成方法存根
          return super.onSubmit(arg0, arg1, arg2, arg3);
    }
         protected ModelAndView showForm(HttpServletRequest arg0, HttpServletResponse arg1,BindException arg2) throws Exception{
    // TODO自动生成方法存根
          return super. showForm(arg0, arg1,arg2);

    }
    public LoginController(){
    setCommandClass(UserLoginForm.class);
    }
    protected ModelAndView onSubmit(HttpServletRequest request,
     HttpServletResponse response,Object command,BindException errors)
    throws Exception{
    HttpSession session= request.getSession();
    UserLoginForm form= (UserLoginForm) command;
    if(dao.getUser(form.getUsername(), form.getPassword())!=null){
          session.removeAttribute( "manager");
          session.setAttribute("username", form.getUsername());
    }
    return new ModelAndView(new RedirectView("index.lzw"));
    }
    Potcted ModelAndView showForm(HttpServletRequest request,HttpServletResponse response, BindExeption errors) throws Exception{
          HttpSession session-request.getSession();
          String loginOut=request.getParameter(“LoginOut”);
          if(loginOut!=null&&loginOut.equalsIgnoreCase(“ture”)){
           session.invalidate();
    }
         return new ModelAndView(new RedirectView("index.lzw"));
    }
    昨天:1.增加窗口的边框,颜色或者条纹;
          2.可以调整背景色彩图片;
          3.复习窗口装饰相关的Java语言编程;
    今天:1.编写相关代码;
    明天:1.编写相关代码;
  • 相关阅读:
    让框架内循环或者指定元素 指定CSS
    织梦dedecms自定义功能函数(1):调用body中的图片(可多张)
    dedecms 上传目录路径
    点击展示菜单11
    ueditor 去掉自动跟随内容的<p><br /></p>
    点击切换JS
    点击切换的JS
    Unity3D NGUI 给button按钮添加单间事件
    企业如何留住核心人才[转载分享]
    java SSH框架详解(面试和学习都是最好的收藏资料)
  • 原文地址:https://www.cnblogs.com/sjztd-slx/p/9979452.html
Copyright © 2011-2022 走看看