myeclipse 创建spring boot 项目

第一步:
myeclipse File > New > Project,New选择创建project项目
在这里插入图片描述
myeclipse 创建spring boot 项目_第1张图片

第二步:选择Maven Project 后点击 Next
myeclipse 创建spring boot 项目_第2张图片
第三步:
注意勾选create a simple project(skip archetype selection)//创建一个简单的项目跳过原型选择,并根据个人情况选择代码存放空间,配置完成后点击Next
myeclipse 创建spring boot 项目_第3张图片

第四步:
groupid和artifactId被统称为“坐标”是为了保证项目唯一性而提出的,如果你要把你项目弄到maven本地仓库去,你想要找到你的项目就必须根据这两个id去查找。

Group Id : groupId一般分为多个段,常用的为两段,第一段为域,第二段为公司名称。域又分为org、com、cn等等许多,其中org为非营利组织,com为商业组织。举个apache公司的tomcat项目例子:这个项目的groupId是org.apache,它的域是org(因为tomcat是非营利项目),公司名称是apache,artigactId是tomcat。
Artifact Id : 项目的名称
Compiler Level : 选择jdk版本
点击Finish
myeclipse 创建spring boot 项目_第4张图片

第五步:
配置pom.xml

"http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.0.0
  com.flash
  demo
  0.0.1-SNAPSHOT
  
    org.springframework.boot
    spring-boot-starter-parent
    1.5.6.RELEASE


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

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

注意: 上述配置完成后项目飘红的话,可尝试:
右击项目 > Maven > Update Project
myeclipse 创建spring boot 项目_第5张图片

第五步:
在src/main/java下,创建我们自定义的包和java代码

package com.flash;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

//注解
@SpringBootApplication
@Controller
public class demo {

    @RequestMapping("/hello")
    @ResponseBody
    public String hello() {
        return "hello world";
    }

    //注解
    public static void main(String[] args) {
        SpringApplication.run(demo.class, args);
    }

}

第六步:
右键 > Run as > Spring Boot App,成功启动如下:
myeclipse 创建spring boot 项目_第6张图片

myeclipse 创建spring boot 项目_第7张图片

第七步:
打开浏览器输入:http://127.0.0.1:8080/hello
myeclipse 创建spring boot 项目_第8张图片

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