My question might be amature but still I want to know whether we can pass the HttpServletRequest,HttpServletResponse objects as arguments to the business logic methods?
**Is that a good programming practice ?**
**Example :**
@RequestMapping( value = "/controller_name" , method = RequestMethod.GET)
public String getNewRegistrationPage(HttpServletRequest req,HttpServletResponse res)
{
getDetails(req);
}
public void businessLogic(HttpServletRequest **req**)
{
//business logic here
}
Thanks,
Sridhar R Yes it is possible to do it, in our shop we have lots of code doing that..
以上就是Is it fine to pass HttpServletrequest attribute to expose to the methods that is called from the controller的详细内容,更多请关注web前端其它相关文章!