1. 程式人生 > >Spring boot 梳理 - 配置eclipse整合maven,並開發Spring boot hello

Spring boot 梳理 - 配置eclipse整合maven,並開發Spring boot hello

  1. @RestController
    @EnableAutoConfiguration
    public class App 
    {
        @RequestMapping("/hello")
        public HashMap<String,String> hello(){
            HashMap<String,String> result=new HashMap<String,String>();
            result.put("name", "jt");
            return result;
            
        }
        
    public static void main( String[] args ) { SpringApplication.run(App.class, args); } }