spring boot的hello world demo,步骤见如下网址:
http://how2j.cn/k/springboot/springboot-eclipse/1640.html
http://how2j.cn/k/springboot/springboot-idea/1641.html
但是到了我的机器上,两个IDE都显示如下问题:
2016-09-06 18:02:35.152 INFO 22216 --- [ main] com.example.SpringBootDemo1Application : Starting SpringBootDemo1Application on IN-FMCN882 with PID 22216 (E:\workspace\springBoot\SpringBootDemo1\target\classes started by Rahul.Tyagi in E:\workspace\springBoot\SpringBootDemo1)
2016-09-06 18:02:35.158 INFO 22216 --- [ main] com.example.SpringBootDemo1Application : No active profile set, falling back to default profiles: default
2016-09-06 18:02:35.244 INFO 22216 --- [ main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@14dd9eb7: startup date [Tue Sep 06 18:02:35 IST 2016]; root of context hierarchy
2016-09-06 18:02:36.527 INFO 22216 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2016-09-06 18:02:36.546 INFO 22216 --- [ main] com.example.SpringBootDemo1Application : Started SpringBootDemo1Application in 1.781 seconds (JVM running for 2.376)
2016-09-06 18:02:36.548 INFO 22216 --- [ Thread-1] s.c.a.AnnotationConfigApplicationContext : Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@14dd9eb7: startup date [Tue Sep 06 18:02:35 IST 2016]; root of context hierarchy
2016-09-06 18:02:36.550 INFO 22216 --- [ Thread-1] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown
也就是说,应用打开了,但是马上就关掉了。
在网上找了一圈,也在*上找到了有人问这个问题,但都没有任何帮助。
然后在浏览器输入localhost:8080/hello,表示无法连接。也就是tomcat根本没有打开!
然后Eclipse下面有个这样的error:Target runtime Apache Tomcat v7.0 is not defined.
然后再回顾了一下写demo的过程,第一次下载pom.xml下面的jar包的时候,因为嫌过程太慢,就强制停掉了,然后改了一下maven的配置,弄了阿里云的镜像,然后update了一下项目,但是还是不行。
可能是因为tomcat相关的jar包没有下载完整吧。
解决办法是把本地仓库的com/apache/tomcat这个目录直接删掉,然后项目重新启动再重新下载一遍就好了。
搞了一个晚上,然后睡了一觉,就解决了。