zoukankan      html  css  js  c++  java
  • Spring Boot项目部署到tomcat启动失败404

    1、现象

      控制台没有springboot加载日志,访问localhost:port/project  404

    2、原因分析

      tomcat没有加载到该项目

    3、解决方案

      3.1、在pom.xml文件中,把打包形式jar改为war

    <packaging>war</packaging>

      3.2、在pom中添加一条依赖,屏蔽springboot中tomcat容器

    <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-tomcat</artifactId>
                <scope>provided</scope>
    </dependency>

      3.3、修改启动类SpringbootApplication继承SpringBootServletInitializer 

    public class SpringbootApplication extends SpringBootServletInitializer {
    
        public static void main(String[] args) {
            SpringApplication.run(SpringbootApplication.class, args);
        }
        //重写configure方法
        @Override
        protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
            return builder.sources(SpringbootApplication.class);
        }
    }

    4、打包部署

      eclipse中修改项目为

      Dymanic Web Module,java, javascript

      Deployment Assembly--->Add--->Java Build Path Entries--->Maven Dependencies

    mvn clean package
  • 相关阅读:
    zabbix3.4.6之源码安装
    集群概念Cluster
    awk文本分析工具
    shell getopts用法
    expect交互式安装软件
    常用通配符
    iptable四表五链
    质量保障&&质量体系建设
    MySQL数据库同步工具的设计与实现
    Redis ==> 集群的三种模式
  • 原文地址:https://www.cnblogs.com/51ma/p/11313553.html
Copyright © 2011-2022 走看看