notes/pl/java/libfws/spring/boot/banner.txt
Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

23 строки
662 B
Plaintext

https://www.mkyong.com/spring-boot/spring-boot-how-to-disable-the-spring-logo-banner/
java -Dspring.main.banner-mode=off -jar boot-app.jar
package sample;
import org.springframework.boot.Banner;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
public class Main implements CommandLineRunner {
@Override
public void run(String... args) throws Exception {
//
}
public static void main(String [] args) {
SpringApplication app = new SpringApplication(Main.class);
app.setBannerMode(Banner.Mode.OFF); // OFF LOG
SpringApplication.run(Main.class, args);
}
}