myeclipse10创建Springboot的小demo之helloworld

1.环境:myeclipse10,maven3.3.9,jdk1.8

2.配置jdk1.8环境变量,maven环境变量

3.创建新的工作空间SpringBoot

myeclipse10创建Springboot的小demo之helloworld_第1张图片

4.创建maven项目

myeclipse10创建Springboot的小demo之helloworld_第2张图片

5.选择创建简单的项目,这样创建的项目会有完整的目录结构,我试着不选择创建出来的项目出现问题,没有搞清楚怎么回事

所以先选择创建简单项目,点击下一步,填写相关信息

myeclipse10创建Springboot的小demo之helloworld_第3张图片

6.填写信息,其中Compiler Level只能选到1.6不知道为什么,但是不影响项目的创建

myeclipse10创建Springboot的小demo之helloworld_第4张图片


7.显示目录结构,我重新添加的运行环境1.8,其他也可以,因为后续我要做一个项目用到1.8的环境

myeclipse10创建Springboot的小demo之helloworld_第5张图片

8.配置pom.xml

     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.study
  MySpringBoot
  0.0.1-SNAPSHOT
  jar
  
  MySpringBoot
  http://maven.apache.org
 
 
    UTF-8
    1.8
 

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

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

 

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

   

 


***  2,3,4步步很重要,配置完成后,保存,需要稍等一会,会自动加载需要的东西,如果pom,xml报错,需要看看maven的conf目录下的

settings.xml文件

有这么一段配置


        jdk1.8
       
                true
        1.8
   

   
            1.8
            1.8
            1.8

   

我选的jdk版本1.8,其他maven插件版本也是1.8的,对应上就行了,然后更新项目

myeclipse10创建Springboot的小demo之helloworld_第6张图片


9.写一个启动程序,这个启动程序的包一定是父级包,否则会找不到相应的类而报错

myeclipse10创建Springboot的小demo之helloworld_第7张图片


10.启动并访问,直接启动main方法,会出现

myeclipse10创建Springboot的小demo之helloworld_第8张图片


11.访问

myeclipse10创建Springboot的小demo之helloworld_第9张图片





你可能感兴趣的:(myeclipse10创建Springboot的小demo之helloworld)