SpringBoot学习笔记

1.快速搭建一个springboot项目

首先创建一个一般的Maven项目,有一个pom.xml和基本的src/main/java结构。

在pom.xml中写上如下内容:



    4.0.0

    com.github.abel533
    spring-boot
    1.0-SNAPSHOT

    
        org.springframework.boot
        spring-boot-starter-parent
        1.3.0.RELEASE
    

    
        
            org.springframework.boot
            spring-boot-starter-web
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
                
                    
                        org.springframework
                        springloaded
                        1.2.5.RELEASE
                    
                
            
        
    

在根包下创建一个应用类:

@RestController
@EnableAutoConfiguration
@ComponentScan
public class Application {

    @Autowired
    private Person person;
    
    @RequestMapping("/")
    String home() {
        String name = person.getName();
        return "Hello world" + name;
    }

    @RequestMapping("/now")
    String hehe() {
        return "现在时间:" + (new Date()).toLocaleString();
    }

    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }

}

启动项目

在IDE中直接直接执行main方法,然后访问http://localhost:8080即可。

你可能感兴趣的:(SpringBoot学习笔记)