我的第一个SpringBoot项目(myeclipse10+jdk8+tomcat7)
新建一个maven项目
在myeclipse10中没有1.8所以选择1.6;
修改pom.xml文件,内容如下
4.0.0
com.liu
MySpringBoot
0.0.1-SNAPSHOT
http://maven.apache.org
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 然后右击项目名->maven4Myeclipse->update project configuration ->选中 强制更新项目 force update of snapshots; 因为pom配置的jdk版本为1.8,修改项目运行环境。右击项目名,build-path, ![在这里插入图片描述](https://img-blog.csdnimg.cn/20181223212327367.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzI4NjQ2MzIx,size_16,color_FFFFFF,t_70) 创建如下文件,目录如下 ![在这里插入图片描述](https://img-blog.csdnimg.cn/20181223212416648.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzI4NjQ2MzIx,size_16,color_FFFFFF,t_70) ![在这里插入图片描述](https://img-blog.csdnimg.cn/20181223212442202.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzI4NjQ2MzIx,size_16,color_FFFFFF,t_70) 然后运行main文件。 ![在这里插入图片描述](https://img-blog.csdnimg.cn/2018122321255117.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzI4NjQ2MzIx,size_16,color_FFFFFF,t_70) 访问localhost:8080/hello ![在这里插入图片描述](https://img-blog.csdnimg.cn/20181223212639412.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzI4NjQ2MzIx,size_16,color_FFFFFF,t_70)