Skip to content
Snippets Groups Projects
Select Git revision
  • 48c07269e10c33738175b67beb05885fac7d49a0
  • master default
2 results

alloc.h

Blame
  • Forked from 신선 / 1801_OS_assignment4
    Source project has a limited visibility.
    MyWebApplication.java 433 B
    package com.ajou.prcoding.myweb;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
    
    @SpringBootApplication
    public class MyWebApplication extends SpringBootServletInitializer {
    
    	public static void main(String[] args) {
    		SpringApplication.run(MyWebApplication.class, args);
    	}
    
    }