溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Spring Boot右鍵maven build成功但是直接運行main方法出錯的解決方案

發(fā)布時間:2020-09-01 19:47:04 來源:腳本之家 閱讀:184 作者:youreyebows 欄目:編程語言

1、代碼就一個Controller,從官網(wǎng)復(fù)制過來的,如下

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

Spring Boot右鍵maven build成功但是直接運行main方法出錯的解決方案

仔細觀察了最后一句,應(yīng)該還有一些問題。

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習有所幫助,也希望大家多多支持億速云。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI