分享两种eclipse创建spirngboot项目的办法:
方案一:创建maven项目后修改pom文件
1.用eclipse创建简单的maven项目
2.修改pom文件
<&#63;xml version="1.0" encoding="UTF-8"&#63;>4.0.0 com.chry studySpringBoot 0.0.1-SNAPSHOT 1.7 org.springframework.boot spring-boot-starter-parent 1.4.0.RELEASE org.springframework.boot spring-boot-starter-web studySpringBoot
3.新建一个类文件
package com.chry.study; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; @Controller @EnableAutoConfiguration public class SampleController { @RequestMapping("/") @ResponseBody String home() { return "Hello World!"; } public static void main(String[] args) throws Exception { SpringApplication.run(SampleController.class, args); } }
说明:
1.spring-boot-starter-parent:
springboot官方推荐的maven管理工具,最简单的做法就是继承它。 spring-boot-starter-parent包含了以下信息:
2.spring-boot-starter-web
springboot内嵌的WEB容器, 缺省会使用tomcat
方案二:在eclipse上安装STS插件
1、Help -> Eclipse Marketplace
Search或选择“Popular”标签,选择Spring Tool Suite (STS) for Eclipse插件,安装 或者谷歌百度搜索
2、new project -> 输入spring 下面会有提示 选择Spring Starter Project
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。