没有显示json字符串,而是报500错误
来源:6-3 接口请求全局异常处理-设计与验证

Drunk320
2018-07-01
@Controller @RequestMapping("/test") @Slf4j public class testC { @RequestMapping("/hi.json") @ResponseBody public JsonData hi() { log.info("hello"); throw new PermissionException("test exception"); //return JsonData.success("hi,you"); } }
[2018-07-01 04:26:26,438] Artifact permission:war: Artifact is deployed successfully
[2018-07-01 04:26:26,438] Artifact permission:war: Deploy took 2,925 milliseconds
七月 01, 2018 4:26:33 下午 org.apache.catalina.startup.HostConfig deployDirectory
信息: Deploying web application directory D:\JavaTools\apache-tomcat-7.0.88\webapps\manager
七月 01, 2018 4:26:33 下午 org.apache.catalina.startup.TldConfig execute
信息: At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.
七月 01, 2018 4:26:33 下午 org.apache.catalina.startup.HostConfig deployDirectory
信息: Deployment of web application directory D:\JavaTools\apache-tomcat-7.0.88\webapps\manager has finished in 53 ms
七月 01, 2018 4:26:35 下午 org.springframework.web.servlet.DispatcherServlet initServletBean
信息: FrameworkServlet 'spring': initialization started
七月 01, 2018 4:26:35 下午 org.springframework.web.context.support.XmlWebApplicationContext prepareRefresh
信息: Refreshing WebApplicationContext for namespace 'spring-servlet': startup date [Sun Jul 01 16:26:35 CST 2018]; parent: Root WebApplicationContext
七月 01, 2018 4:26:35 下午 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
信息: Loading XML bean definitions from ServletContext resource [/WEB-INF/spring-servlet.xml]
七月 01, 2018 4:26:35 下午 org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping register
信息: Mapped "{[/test/hi.json]}" onto public com.drunk.common.JsonData com.drunk.controller.testC.hi()
七月 01, 2018 4:26:36 下午 org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter initControllerAdviceCache
信息: Looking for @ControllerAdvice: WebApplicationContext for namespace 'spring-servlet': startup date [Sun Jul 01 16:26:35 CST 2018]; parent: Root WebApplicationContext
七月 01, 2018 4:26:36 下午 org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter initControllerAdviceCache
信息: Looking for @ControllerAdvice: WebApplicationContext for namespace 'spring-servlet': startup date [Sun Jul 01 16:26:35 CST 2018]; parent: Root WebApplicationContext
七月 01, 2018 4:26:36 下午 org.springframework.web.servlet.DispatcherServlet initServletBean
信息: FrameworkServlet 'spring': initialization completed in 654 ms
16:26:36.383 [http-apr-8080-exec-7] INFO com.drunk.controller.testC - hello
1回答
-
Jimin
2018-07-01
你好,这个抛异常属于我们设定的,但是没有被全局异常捕捉住,导致直接展示在页面上,而不是json格式,因此问题原因应该是出在异常拦截的配置及代码里。
为了能准确定位问题所在,需要你发一下全局异常那个类及对应的配置看一下00
相似问题