0

我被困住了。我在使用 Spring MVC 设置 log4j 时遇到了配置问题。得到以下错误。

log4j:WARN No appenders could be found for logger (org.springframework.web.servlet.DispatcherServlet).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.

这是我的控制器代码

     public class HelloWorldController {

private static Logger logger = Logger.getLogger(HelloWorldController.class);

int first_no=10;
int second_no=10;
int summation;
@RequestMapping("/helloworld")
   public String helloWord(ModelMap modelview){

    summation=first_no+second_no;

    System.out.println("Inside hello world");


    logger.info("Hello, World!");
      modelview.addAttribute("message", summation);

         return "helloworld";
    }
}

这是我的 log4j.properties 文件

    # Direct log messages to stdout
    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{ABSOLUTE} %5p %c{1}:%L - %m%n

   # Root logger option
   log4j.rootLogger=debug, file, stdout

我已将文件保存在 Eclipse 中的 src/resources 下。谁能帮我解决这个问题?我被困住了。

4

1 回答 1

1

可能log4j.properties文件不在类路径中。将 log4j.properties 移动到Eclipse中的src文件夹中以及部署在容器中时的WEB-INF/classes下。

于 2013-06-13T07:33:11.960 回答