/
NikolayIvkin
/
tutorials1
Обзор
Документация
Войти
/
NikolayIvkin
/
tutorials1
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
spring-boot-modules/spring-boot-testing/src/main/java/com/baeldung/boot/Application.java
14 строк
443 B
mikr
BAEL-20888 Move Spring Boot Testing to Spring Boot Modules
27 янв 2020, 01:09
27 янв 2020, 01:09
36e7e06
Код
Авторство
О чём код?
package com.baeldung.boot; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.ApplicationContext; @SpringBootApplication public class Application { private static ApplicationContext applicationContext; public static void main(String[] args) { applicationContext = SpringApplication.run(Application.class, args); } }