Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Arthas实践--快速排查Spring Boot应用404/401问题 #429

Closed
hengyunabc opened this issue Jan 7, 2019 · 11 comments
Closed

Arthas实践--快速排查Spring Boot应用404/401问题 #429

hengyunabc opened this issue Jan 7, 2019 · 11 comments

Comments

@hengyunabc
Copy link
Collaborator

背景

在Java Web/Spring Boot开发时,很常见的问题是:

  • 网页访问404了,为什么访问不到?
  • 登陆失败了,请求返回401,到底是哪个Filter拦截了我的请求?

碰到这种问题时,通常很头痛,特别是在线上环境时。

本文介绍使用Alibaba开源的Java诊断利器Arthas,来快速定位这类Web请求404/401问题。

Java Web里一个请求被处理的流程

在进入正题之前,先温习下知识。一个普通的Java Web请求处理流程大概是这样子的:

Request  -> Filter1 -> Filter2 ... -> Servlet
                                        |
Response <- Filter1 <- Filter2 ... <- Servlet

Demo

本文的介绍基于一个很简单的Demo:https://github.com/hengyunabc/spring-boot-inside/tree/master/demo-404-401

是哪个Servlet返回了404?

Demo启动后,访问:http://localhost:8080/a.txt ,返回404:

$ curl http://localhost:8080/a.txt
{"timestamp":1546790485831,"status":404,"error":"Not Found","message":"No message available","path":"/a.txt"}

我们知道一个HTTP Request,大部分情况下都是由一个Servlet处理的,那么到底是哪个Servlet返回了404?

我们使用Arthas的trace命令来定位:

$ trace javax.servlet.Servlet *
Press Ctrl+C to abort.
Affect(class-cnt:7 , method-cnt:185) cost in 1018 ms.

然后访问 http://localhost:8080/a.txt ,Arthas会打印出整个请求树,完整的输出太长,这里只截取关键的一输出:

+---[13.087083ms] org.springframework.web.servlet.DispatcherServlet:resolveViewName()
|   `---[13.020984ms] org.springframework.web.servlet.DispatcherServlet:resolveViewName()
|       +---[0.002777ms] java.util.List:iterator()
|       +---[0.001955ms] java.util.Iterator:hasNext()
|       +---[0.001739ms] java.util.Iterator:next()
|       `---[12.891979ms] org.springframework.web.servlet.ViewResolver:resolveViewName()
|           +---[0.089811ms] javax.servlet.GenericServlet:<init>()
|           +---[min=0.037696ms,max=0.054478ms,total=0.092174ms,count=2] org.springframework.web.servlet.view.freemarker.FreeMarkerView$GenericServletAdapter:<init>()

可以看出请求经过Spring MVC的DispatcherServlet处理,最终由ViewResolver分派给FreeMarkerView$GenericServletAdapter处理。所以我们可以知道这个请求最终是被FreeMarker处理的。
后面再排查FreeMarker的配置就可以了。

这个神奇的trace javax.servlet.Servlet *到底是怎样工作的呢?

实际上Arthas会匹配到JVM里所有实现了javax.servlet.Servlet的类,然后trace它们的所有函数,所以HTTP请求会被打印出来。

这里留一个小问题,为什么只访问了http://localhost:8080/a.txt,但Arthas的trace命令打印出了两个请求树?

是哪个Filter返回了401?

在Demo里,访问 http://localhost:8080/admin ,会返回401,即没有权限。那么是哪个Filter拦截了请求?

$ curl http://localhost:8080/admin
{"timestamp":1546794743674,"status":401,"error":"Unauthorized","message":"admin filter error.","path":"/admin"}

我们还是使用Arthas的trace命令来定位,不过这次trace的是javax.servlet.Filter

$ trace javax.servlet.Filter *
Press Ctrl+C to abort.
Affect(class-cnt:13 , method-cnt:75) cost in 278 ms.

再次访问admin,在Arthas里,把整个请求经过哪些Filter处理,都打印为树。这里截取关键部分:

+---[0.704625ms] org.springframework.web.filter.OncePerRequestFilter:doFilterInternal()
|   `---[0.60387ms] org.springframework.web.filter.RequestContextFilter:doFilterInternal()
|       +---[0.022704ms] org.springframework.web.context.request.ServletRequestAttributes:<init>()
|       +---[0.217636ms] org.springframework.web.filter.RequestContextFilter:initContextHolders()
|       |   `---[0.180323ms] org.springframework.web.filter.RequestContextFilter:initContextHolders()
|       |       +---[0.034656ms] javax.servlet.http.HttpServletRequest:getLocale()
|       |       +---[0.0311ms] org.springframework.context.i18n.LocaleContextHolder:setLocale()
|       |       +---[0.008691ms] org.springframework.web.context.request.RequestContextHolder:setRequestAttributes()
|       |       `---[0.014918ms] org.apache.commons.logging.Log:isDebugEnabled()
|       +---[0.215481ms] javax.servlet.FilterChain:doFilter()
|       |   `---[0.072186ms] com.example.demo404401.AdminFilterConfig$AdminFilter:doFilter()
|       |       `---[0.021945ms] javax.servlet.http.HttpServletResponse:sendError()

可以看到HTTP Request最终是被com.example.demo404401.AdminFilterConfig$AdminFilter处理的。

总结

  • 通过trace Servlet/Filter,可以快速定位Java Web问题
  • trace是了解应用执行流程的利器,只要trace到关键的接口或者类上
  • 仔细观察trace的结果,可以学习到Spring MVC是处理Web请求细节

链接

打个广告,Arthas正在征集使用者,您的使用是对我们最大的支持。
如果Arthas对您排查问题有帮助,请到这个Issue登记下,并在30分钟内成为Arthas Contributor:

#395

@oldmanpushcart
Copy link

oldmanpushcart commented Jan 7, 2019

stack -E javax.servlet.http.HttpServletResponse sendError|setStatus params[0]==404

@zonghaishang
Copy link

有赞

@kt286
Copy link

kt286 commented Jan 8, 2019

感觉你把这个系列放在wiki更好一些 issue是提问题的地方.....

@hengyunabc
Copy link
Collaborator Author

感觉你把这个系列放在wiki更好一些 issue是提问题的地方.....

wiki没有办法评论交流,issue打上tag,做为区分就可以了。

@xianwei
Copy link

xianwei commented Jan 24, 2019

挺强大的工具

@Imccccc
Copy link

Imccccc commented Mar 24, 2019

想知道小问题的答案是什么

Request  -> Filter1 -> Filter2 ... -> Servlet
                                         | 
Response <- Filter1 <- Filter2 ... <- Servlet

难道是request和response都触发了一次 "trace javax.servlet.Servlet" ?

@hengyunabc
Copy link
Collaborator Author

想知道小问题的答案是什么

Request  -> Filter1 -> Filter2 ... -> Servlet
                                         | 
Response <- Filter1 <- Filter2 ... <- Servlet

难道是request和response都触发了一次 "trace javax.servlet.Servlet" ?

浏览器访问网站时,会尝试获取网站图标,比如访问当前页面会有下面的请求:

所以会拦截到两次请求。

@nehcuoh
Copy link

nehcuoh commented Jun 14, 2019

对被cglib代理的类,trace 输出的是拦截器调用,没有trace 到实际方法的调用。怎么才能看到被代理的类的trace 呢?
image

@hengyunabc
Copy link
Collaborator Author

@houchen trace 是只trace一层的。 #597

@xiebs
Copy link

xiebs commented Apr 30, 2020

对被cglib代理的类,trace 输出的是拦截器调用,没有trace 到实际方法的调用。怎么才能看到被代理的类的trace 呢?
image

同问!!

@hengyunabc
Copy link
Collaborator Author

对被cglib代理的类,trace 输出的是拦截器调用,没有trace 到实际方法的调用。怎么才能看到被代理的类的trace 呢?
image

同问!!

参考这里: https://github.com/hengyunabc/arthas-mybatis-demo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

8 participants