當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
Spring MVC集成Log4j
生活随笔
收集整理的這篇文章主要介紹了
Spring MVC集成Log4j
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
以下示例顯示如何使用Spring Web MVC框架集成LOG4J。首先使用Eclipse IDE,并按照以下步驟使用Spring Web Framework開發基于動態表單的Web應用程序:
完整的項目文件目錄結構如下所示 -
HelloController.java 的代碼如下所示 -
package com.yiibai.springmvc; import org.apache.log4j.Logger; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.ui.ModelMap;@Controller @RequestMapping("/hello") public class HelloController{private static final Logger LOGGER = Logger.getLogger(HelloController.class);@RequestMapping(method = RequestMethod.GET)public String printHello(ModelMap model) {LOGGER.info("printHello started.");//logs debug messageif(LOGGER.isDebugEnabled()){LOGGER.debug("Inside: printHello");}//logs exceptionLOGGER.error("Logging a sample exception", new Exception("Testing"));model.addAttribute("message", "Hello Spring MVC Framework!");LOGGER.info("printHello ended.");return "hello";} }log4j.properties 的代碼如下所示 -
# Root logger option log4j.rootLogger=DEBUG, stdout, file# Redirect log messages to console log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.Target=System.out log4j.appender.stdout.layout=org.apache.log4j.PatternLayout log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n# Redirect log messages to a log file log4j.appender.file=org.apache.log4j.RollingFileAppender #outputs to Tomcat home log4j.appender.file.File=${catalina.home}/logs/myapp.log log4j.appender.file.MaxFileSize=5MB log4j.appender.file.MaxBackupIndex=10 log4j.appender.file.layout=org.apache.log4j.PatternLayout log4j.appender.file.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%nIntegrateLog4j-servlet.xml 配置如下所示 -
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:context="http://www.springframework.org/schema/context" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:mvc="http://www.springframework.org/schema/mvc"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsdhttp://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsdhttp://www.springframework.org/schema/mvchttp://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"><context:component-scan base-package="com.yiibai.springmvc" /><bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"><property name="prefix" value="/WEB-INF/jsp/" /><property name="suffix" value=".jsp" /></bean> </beans>hello.jsp 文件中的配置如下所示 -
<%@ page contentType="text/html; charset=UTF-8" %> <html> <head> <title>Hello World</title> </head> <body><h2>${message}</h2> </body> </html>在上面的代碼中,已經在tomcat控制臺中配置了log4j,用它來記錄日志詳細信息,并且在 tomcat 目錄下將日志文件保存為:myapp.log。
完成創建源和配置文件后,發布應用程序到Tomcat服務器。
現在啟動Tomcat服務器,當訪問URL => http://localhost:8080/IntegrateLog4j/hello , 如果Spring Web應用程序沒有問題,應該看到以下結果:
原文出自【易百教程】,商業轉載請聯系作者獲得授權,非商業轉載請保留原文鏈接:https://www.yiibai.com/spring_mvc/springmvc_log4j.html
總結
以上是生活随笔為你收集整理的Spring MVC集成Log4j的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Spring MVC生成PDF文件代码示
- 下一篇: Spring4 MVC表单验证代码示例