springboot学习1-使用 Spring Starter Project快速创建基于spring-boot的web项目

开发IDE:spring tool suite

步骤:
1)new --->Spring Starter Project
springboot学习1-使用 Spring Starter Project快速创建基于spring-boot的web项目_第1张图片

2) 填写项目信息,见下图
springboot学习1-使用 Spring Starter Project快速创建基于spring-boot的web项目_第2张图片

3)下一步后出现下图:
springboot学习1-使用 Spring Starter Project快速创建基于spring-boot的web项目_第3张图片
因为在上次已经建立过一个基于Spring-boot的web工程,所以Frequently used中出现web、thymeleaf,可以根据实际项目需要选择相应模块,如security等
4)按照提示下一步后再下一步,工程就建立好了,如下图:
springboot学习1-使用 Spring Starter Project快速创建基于spring-boot的web项目_第4张图片
5)写一个controller
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
public class MainController {
	@RequestMapping(value="/index",method=RequestMethod.GET)
	public String get(){
		return "index";
	}
}

6)src/main/java中写一个页面(thymeleaf为模板)index.html,页面代码如下:


this is testing

	Hello,mifeng! this is for testing

7)完成后项目结构如下图

springboot学习1-使用 Spring Starter Project快速创建基于spring-boot的web项目_第5张图片

8)启动项目,浏览器可以看到效果
springboot学习1-使用 Spring Starter Project快速创建基于spring-boot的web项目_第6张图片

下面是pom.xml文件:



	4.0.0

	com.mifeng.test
	web-practice
	0.0.1-SNAPSHOT
	jar

	web-practice
	web-practice

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

	
		UTF-8
		UTF-8
		1.8
	

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

		
			org.springframework.boot
			spring-boot-starter-test
			test
		
	

	
		
			
				org.springframework.boot
				spring-boot-maven-plugin
			
		
	




你可能感兴趣的:(Spring,Java,spring,boot)