Skip to content
Snippets Groups Projects
Select Git revision
  • a4ec919f5ebcb8fe5ce780143bdbad27682e14cc
  • master 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);
    	}
    
    }