我在resources文件夹下有log4j.properties文件。现在我在application.properties文件中传递logging.file = / Users / jkuriakos / web / rnt / dr / rnt.log。 如何使用log4j.properties文件从log4j.properties文件加载所有信息(如smtp服务器等)?
答案 0 :(得分:0)
从pom文件中排除spring-boot-starter-logging并添加以下依赖项:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j</artifactId>
</dependency>
这应该让spring boot从resources文件夹中获取log4j.properties。 http://docs.spring.io/spring-boot/docs/current/reference/html/howto-logging.html#howto-configure-log4j-for-logging