Spring boot2.0 入门(三)-Spring boot Eclipse打包成jar运行

Spring boot2.0内嵌tomcat8,并且可以直接打包成jar运行,步骤如下:
右键工程->runAs->maven build

如果直接对Spring boot工程使用maven build打包,在运行jar包的时候,会出现xxx-0.0.1-SNAPSHOP.JAR中没有主清单属性:
在这里插入图片描述
需要在pom.xml文中添加插件:

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

你可能感兴趣的:(java)