为了账号安全,请及时绑定邮箱和手机立即绑定

为什么其他的request方法都得到结果了,唯独没有得到getMethod呢?

public void doBefore(JoinPoint joinPoint){
   ServletRequestAttributes attributes = (ServletRequestAttributes)RequestContextHolder.getRequestAttributes();
   javax.servlet.http.HttpServletRequest request = attributes.getRequest();
   //url
   logger.info("url={}", request.getRequestURL());
   //ip
   logger.info("ip={}", request.getRemoteAddr());
   //Method:get,post等
   logger.info("method:", request.getMethod());
   //类方法
   logger.info("classMethod={}", joinPoint.getSignature().getDeclaringTypeName() + "." + joinPoint.getSignature().getName());
   //params
   logger.info("params={}", joinPoint.getArgs());
}

http://img1.sycdn.imooc.com//59a3d1cc0001083e17800297.jpg

正在回答

1 回答

method后面没有={ },细心点噢

0 回复 有任何疑惑可以回复我~
#1

双鱼儿 提问者

非常感谢!
2017-08-29 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么其他的request方法都得到结果了,唯独没有得到getMethod呢?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信