스프링 전환 계획 수립 (iss-cb35afc33813)
This commit is contained in:
parent
3940a133ac
commit
36d709dc49
1 changed files with 18 additions and 0 deletions
|
|
@ -0,0 +1,18 @@
|
||||||
|
package com.runtime;
|
||||||
|
|
||||||
|
import org.springframework.boot.SpringApplication;
|
||||||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
import org.springframework.transaction.annotation.EnableTransactionManagement;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 스프링 런타임 메인 애플리케이션
|
||||||
|
* 스프링 부트 3.x 기반 런타임 시스템의 진입점
|
||||||
|
*/
|
||||||
|
@SpringBootApplication
|
||||||
|
@EnableTransactionManagement
|
||||||
|
public class SpringRuntimeApplication {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
SpringApplication.run(SpringRuntimeApplication.class, args);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue