在业务控制方法中写入Request,Response等传统web参数

Posted 码上加油站

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在业务控制方法中写入Request,Response等传统web参数相关的知识,希望对你有一定的参考价值。

可以在业务控制方法中书写传统web参数,这种方式我们不提倡,耦合了

@Controller
@RequestMapping(value="/user")
public class UserAction{
    @RequestMapping(value="/add",method=RequestMethod.POST)
    public void add(HttpServletRequest request,HttpServletResponse response) throws Exception{
        System.out.println("HelloAction::add()::POST");
        int id = Integer.parseInt(request.getParameter("id"));
        String name = request.getParameter("name");
        double sal = Double.parseDouble(request.getParameter("sal"));
        System.out.println(id + ":" + name + ":" + sal);
        request.getSession().setAttribute("id",id);
        request.getSession().setAttribute("name",name);
        request.getSession().setAttribute("sal",sal);
        response.sendRedirect(request.getContextPath()+"/register.jsp");
    }    
}

 

以上是关于在业务控制方法中写入Request,Response等传统web参数的主要内容,如果未能解决你的问题,请参考以下文章

在业务控制方法中写入普通变量收集参数

第一段nodejs代码

在业务控制方法中写入User,Admin多个模型收集参数

在业务控制方法中写入包装User的模型来收集参数

drf视图

PHP中的控制器有啥用