Spring Boot 开发指南(1):hello world

pom.xml文件:


  4.0.0
  com.jessexu
  demo
  0.0.1-SNAPSHOT
  
    
        org.springframework.boot
        spring-boot-starter-web
         1.4.1.RELEASE
    

   
        
            
                org.springframework.boot
                spring-boot-maven-plugin
                1.4.1.RELEASE
                
                    
                        
                            repackage
                        
                    
                
            
        
    

build中的插件是用于打成可执行的fat-jar包。

新建一个hello包:

@Controller
@EnableAutoConfiguration
@ComponentScan(basePackages={"service"})
public class SampleController {
    @Autowired
    private  UserService   userService;
    
    @RequestMapping("/user")
    @ResponseBody
    String home() {
        return userService.getName();
    }
    public static void main(String[] args) throws Exception {
        SpringApplication.run(SampleController.class, args);
    }
}

再新建一个service包,新建UserService:

package service;

import org.springframework.stereotype.Service;

@Service
public class UserService {
    
    
    
    public  String    getName(){
        
        
        return   "hello  world";
    }

}

运行: localhost:8080/user

注解 @EnableAutoConfiguration:这是一个自动配置的注解,用于自动配置一些默认配置,比如web.xml中的配置。数据库的配置等等。详细说明可以看这里:
http://docs.spring.io/spring-...

你可能感兴趣的:(springboot,java)