第一个 Spring Boot 程序

尝试使用 Spring 的一套东西来搭建一个项目 

1. 新建maven项目

2. 去官网粘 https://projects.spring.io/spring-boot/#quick-start

3. 运行


pom.xml


	4.0.0
	com.zlf
	web
	0.0.1-SNAPSHOT

	
	    org.springframework.boot
	    spring-boot-starter-parent
	    1.4.2.RELEASE
	
	
	    
	        org.springframework.boot
	        spring-boot-starter-web
	    
	


SampleController.java

package com.lzf.web;

import org.springframework.boot.*;
import org.springframework.boot.autoconfigure.*;
import org.springframework.stereotype.*;
import org.springframework.web.bind.annotation.*;

@Controller
@EnableAutoConfiguration
public class SampleController {

	@RequestMapping("/")
	@ResponseBody
	String home() {
		return "Hello Spring Boot ";
	}

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


运行后在浏览器访问  http://localhost:8080 就会出现 Hello Spring Boot 


遇到的问题:

不要在百度上乱找教程,要去官网看文档;

用的jdk版本是 1.8

你可能感兴趣的:(spring-boot)