带有多个模块的Spring Boot项目的集中控制台着色

时间:2019-06-14 20:08:25

标签: spring-boot intellij-idea colors console

我想使用Intellij IDEA的几个 模块在Spring Boot项目的运行控制台中获取颜色。像这样:

enter image description here

在通常情况下,我可以添加 application.properties

  

spring.output.ansi.enabled =总是

  

logging.pattern.console =%d {yyyy-MMM-dd HH:mm:ss.SSS} [%thread]   %highlight(%-5level)%cyan(%logger {15})-%msg%n

在当前情况下,我的项目中有几个模块 enter image description here

并且在每个模块的 application.properties 中添加这样的行并不是很方便,所以我想使用一些集中化的解决方案(例如一个插件为每个应用程序的IntelliJ控制台设置颜色)。

有人有想法吗?

1 个答案:

答案 0 :(得分:1)

模板 Spring Boot运行/调试配置 VM选项中添加-Dspring.output.ansi.enabled=ALWAYS

template