一个spring mvc项目,异常信息直接输出到页面上,而控制台日志里面却没有打印异常堆栈信息?

发布于 2022-09-12 01:25:37 字数 2811 浏览 18 评论 0

问题描述

一个spring mvc项目,异常信息直接输出到页面上,而控制台日志里面却没有打印异常堆栈信息?
如下图:
image.png

控制台日志却不打印异常信息
image.png

问题出现的环境背景及自己尝试过哪些方法

背景:
spring mvc项目,spring版本4.3.25,日志组件用的是slf4J+logback

尝试过的方法:
1.一开始查阅资料,以为是日志组件的问题,在web.xml文件中配置了 logback.xml的监听器,不起作用

相关代码

// 请把代码文本粘贴到下方(请勿用图片代替代码)

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

     xmlns="http://java.sun.com/xml/ns/javaee"
     xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
     id="WebApp_ID" version="3.0">


<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:META-INF/spring/spring-config.xml</param-value>
</context-param>

<context-param>
    <param-name>webAppRootKey</param-name>
    <param-value>manage-web.all.root</param-value>
</context-param>


<!-- Processes application requests -->
<servlet>
    <servlet-name>springMVC</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:META-INF/spring/springMVC-servlet.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>springMVC</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>



<filter>
    <filter-name>encodingFilter</filter-name>
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    <init-param>
        <param-name>encoding</param-name>
        <param-value>UTF-8</param-value>
    </init-param>
    <init-param>
        <param-name>forceEncoding</param-name>
        <param-value>true</param-value>
    </init-param>
</filter>

<filter-mapping>
    <filter-name>encodingFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

</web-app>

你期待的结果是什么?实际看到的错误信息又是什么?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

一向肩并 2022-09-19 01:25:37

检查一下你的logback日志配置文件,看看error信息有没有输出配置到console.~~~~

陌路黄昏 2022-09-19 01:25:37

你的logback配置文件长啥样?

最佳男配角 2022-09-19 01:25:37

把你项目的 slf4J + logback 的配置贴出来看看

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文