maven打jar包错误
引起错误的原因是在 SpringbootStudyApplication
类中,加入了下面注释中的代码(监听项目启动,然后打开浏览器),单纯删掉注释代码是无法解决问题的,可能的原因是由于加入这部分代码而import的一些包有冲突吧!具体没搞清楚,重新建项目,不做这个工作就可以打包了!
package com.ex.springbootstudy;import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.event.ApplicationReadyEvent;
import org.springframework.context.event.EventListener;import java.io.IOException;@SpringBootApplication
public class SpringbootStudyApplication {public static void main(String[] args) {SpringApplication.run(SpringbootStudyApplication.class, args);}// @Value("${server.port}")
// private String appport; //站点端口号
//
// /*当端口启动后,直接跳转界面*/
// @EventListener({ApplicationReadyEvent.class})
// void applicationReadyEvent() {
// System.out.println("应用已经准备就绪 ... 启动浏览器");
// String url = "http://localhost:" + appport;
// Runtime runtime = Runtime.getRuntime();
// try {
// runtime.exec("rundll32 url.dll,FileProtocolHandler " + url);
// } catch (IOException e) {
// e.printStackTrace();
// }
// }
}