springboot项目 java -jar xxx.jar 没有主清单属性解决方法

1.在pom文件中添加如下

在这里插入图片描述

    
        
        
            org.springframework.boot
            spring-boot-maven-plugin
            
				true
			
        
    
12345678910

如果上述配置不能成功 请参考下面配置

  <build>
      <plugins>
          <plugin>
              <groupId>org.springframework.bootgroupId>
              <artifactId>spring-boot-maven-pluginartifactId>
              <executions>
                  <execution>
                      <goals>
                          <goal>repackagegoal>
                      goals>
                  execution>
              executions>
          plugin>
      plugins>
  build>
123456789101112131415

你可能感兴趣的:(java,java,spring,boot,jar)