Spring Boot右键maven build成功但是直接运行main方法出错的解决方案
作者:youreyebows 时间:2021-08-22 00:21:26
1、代码就一个Controller,从官网复制过来的,如下
package com.springboot.controller;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
@Controller
@EnableAutoConfiguration
public class SampleController {
@RequestMapping("/index")
@ResponseBody
String home() {
return "Hello World";
}
public static void main(String[] args) throws Exception {
SpringApplication.run(SampleController.class, args);
}
}
2、在项目上右键,maven build,输入 spring-boot:run,过几秒后控制台能看见success,也能看见Hello World,但是没有传说中的那个用字符拼拼出来的spring图案,而且http://localhost:8080/也打不开,于是我机智的在上面的SampleController类中右键->java Application,果真,出错了,还more than 18... 错误如下:
1 Cannot instantiate interface org.springframework.boot.SpringApplicationRunListener : org.springframework.boot.context.event.EventPublishingRunListener
等等之类的,就是找不到类的error
3、我的解决办法
之前我的pom.xml:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.8.RELEASE</version>
</parent>
百度、搜狗、谷歌找了2个小时的方法,自己手动引入其他dependency等等都不行,但是更改了springboot的版本就好了,更改后如下:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.7.RELEASE</version>
</parent>
4、最后在SampleController类中右键->java Application,终于再console中输出了:
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v1.4.7.RELEASE)
2017-11-03 16:17:14.954 INFO 6416 --- [ main] c.s.controller.SampleController : Starting SampleController on USER-20170626MT with PID 6416 (D:\j2ee_workspace\SpringTest\target\classes started by Administrator in D:\j2ee_workspace\SpringTest)
2017-11-03 16:17:14.956 INFO 6416 --- [ main] c.s.controller.SampleController : No active profile set, falling back to default profiles: default
2017-11-03 16:17:15.005 INFO 6416 --- [ main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@411f53a0: startup date [Fri Nov 03 16:17:15 CST 2017]; root of context hierarchy
2017-11-03 16:17:16.688 INFO 6416 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-11-03 16:17:16.702 INFO 6416 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
打开http://localhost:8080/也能看见我的Hello World
仔细观察了最后一句,应该还有一些问题。
来源:https://www.cnblogs.com/youreyebows/p/7778973.html
标签:spring,boot,maven,build,成功,运行,main,出错
0
投稿
猜你喜欢
springboot中@Async默认线程池导致OOM问题
2022-12-19 20:07:01
Feign如何自定义注解翻译器
2022-11-09 07:05:04
Java 实战项目锤炼之网上花店商城的实现流程
2021-09-14 04:51:45
C# DES加密算法中向量的作用详细解析
2022-07-13 07:49:48
Java中死锁与活锁的具体实现
2023-10-29 01:48:02
Android VelocityTracker使用案例详解
2023-08-29 13:32:03
Javaweb mybatis接口开发实现过程详解
2022-03-11 22:02:21
Json操作库DynamicJson使用指南
2023-06-17 10:17:35
Android实现定时任务及闹钟
2023-05-20 13:34:45
Unity实现新手引导镂空效果
2022-07-04 22:50:23
使用java获取md5值的两种方法
2021-06-18 10:30:30
关于@Autowired注解和静态方法及new的关系
2021-07-16 13:08:06
springboot启动扫描不到dao层接口的解决方案
2021-06-29 19:56:06
Java深入浅出数组的定义与使用上篇
2022-03-10 22:32:58
java递归菜单树转换成pojo对象
2022-08-12 04:04:40
Android画板开发之橡皮擦功能
2022-10-23 02:48:52
Java中匿名类的两种实现方式
2022-06-17 23:57:05
Android存储字符串数据到txt文件
2021-11-05 21:55:16
Android入门之onTouchEvent触碰事件的示例详解
2021-08-31 14:27:58
JAVASE系统实现抽卡功能
2023-11-19 19:49:41