解决在linux环境下启动jar时提示no main manifest attribute, in /xxxxx.jar异常

引言:
在开发过程中,我们通常会使用Spring Boot来构建系统项目。然而,在将Spring Boot的jar包部署到 Kubernetes 上时,有时会遇到一些意外情况。本文将介绍我在部署过程中遇到的异常以及解决方法,希望能帮助到遇到类似问题的开发者们。

问题描述:
在完成了Spring Boot项目的基础搭建后,我尝试将其部署到 Kubernetes 上进行测试。将项目的 jar 文件构建成 Docker 镜像后,我尝试使用 Deployment 在 Kubernetes 上部署项目,但却遇到了异常:no main manifest attribute, in /xxxxxx.jar。

问题分析:
异常信息提示我们在启动过程中没有找到启动类,尽管我明确指定了应用程序的启动类。我深入思考后发现,问题可能是由于我没有引入 web 的 starter,而只是使用了 gateway 的 starter 导致的。

解决方法:
为了解决这个问题,我们需要在 Maven 的 pom 文件中添加启动主类的配置,以确保在打包成 jar 包时指定了主类。

<plugin>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-maven-pluginartifactId>
    <executions>
        <execution>
            <goals>
                <goal>repackagegoal>
            goals>
        execution>
    executions>
  
    <configuration>
         <includeSystemScope>trueincludeSystemScope>
         <mainClass>xxx.xxx.xxx.xxxmainClass>
    configuration>
plugin>

通过添加上述配置,我们可以确保在打包成 jar 包时正确指定了主类,从而避免了在 Kubernetes 上部署时出现异常的问题。

总结:
在部署 Spring Cloud Gateway 到 Kubernetes 上时,出现异常问题可能会让人感到困惑。但通过仔细分析异常信息并寻找合适的解决方法,我们可以顺利解决这类问题。

你可能感兴趣的:(Java,linux,jar,java,maven)