使用命令启动springBoot的可执行jar时, 报demo.1.0-SNAPSHOT.jar中没有主清单属性解决方法

 <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

需要在pom.xml加入这段代码, 特别是executions节点下的不能少

上一篇:Python-网页搜罗-BeautifulSoup


下一篇:python-从HTML提取Brainfuck代码