今天创建了一个新项目,发现打包的jar很小,放到服务器上后,执行报错如下:no main manifest attribute

Linux执行Jar包: no main manifest attribute_Linux

原来pom.xml中少了如下配置

<build>
  <plugins>
    <plugin>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-maven-plugin</artifactId>
      <configuration>
        <executable>true</executable>
      </configuration>
    </plugin>
  </plugins>
</build>

先将配置重新加入到pom.xml中

Linux执行Jar包: no main manifest attribute_Linux_02

然后重新打包,放到服务器上,启动OK !!!

Linux执行Jar包: no main manifest attribute_Linux_03