我尝试使用logging.file.name=springboot.log来设置我的日志文件,但是没有日志文件被写入。但让人非常困惑的是springboot.txt是如何工作的。以下是我在application.properties中的设置
logging.level.com.demo=trace
# For the following files, I just keep one and comment the others
logging.file.name=springboot.yml # Works
logging.file.name=springboot.xml # Wor
每个人都知道,如果我们想要读取属性文件,我们可以这样做:
@Configuration
@PropertySource("classpath:/application.properties")
public class AppConfig {
@Value("${app.name}")
public String name;
@Bean
public static PropertySourcesPlaceholderConfigurer placeholderConfigurer() {
return new