spring-boot-01-helloworld-1.0-SNAPSHOT.jar中没有主清单属性【解决方案】

我们打包成功,但是遇到jar中没有主清单属性的错误,解决办法如下:

把我们原先的这段代码


<build>
    <plugins>
      <plugin>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-maven-pluginartifactId>
      plugin>
    plugins>
build>

在plugin便签内添加如下代码

<executions>
  <execution>
    <goals>
      <goal>repackagegoal>
    goals>
  execution>
executions>

最后这样就可以了,我们重新install然后再执行package。


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

我们就会发现多了一个文件spring-boot-01-helloworld-1.0-SNAPSHOT.jar中没有主清单属性【解决方案】_第1张图片

这样在重新执行java -jar spring-boot-01-helloworld-1.0-SNAPSHOT.jar,就可以了

spring-boot-01-helloworld-1.0-SNAPSHOT.jar中没有主清单属性【解决方案】_第2张图片

以上就是spring-boot-01-helloworld-1.0-SNAPSHOT.jar中没有主清单属性【解决方案】的全部内容。

看完如果对你有帮助,感谢点赞支持!
如果你是电脑端的话,看到右下角的 “一键三连” 了吗,没错点它[哈哈]

在这里插入图片描述

加油!

共同努力!

Keafmd

你可能感兴趣的:(SpringBoot,springboot)