Skip to content
Snippets Groups Projects
Select Git revision
  • e70cfe9abd61897446566b9ef0de89284829a9e6
  • main default protected
2 results

MyWebApplication.java

Blame
  • MyWebApplication.java 314 B
    package com.ajou.prcoding.myweb;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    
    @SpringBootApplication
    public class MyWebApplication {
    
    	public static void main(String[] args) {
    		SpringApplication.run(MyWebApplication.class, args);
    	}
    
    }