为了账号安全,请及时绑定邮箱和手机立即绑定

Spring Boot 应用程序在 IDE 中运行时工作,但当部署为 war 文件时

Spring Boot 应用程序在 IDE 中运行时工作,但当部署为 war 文件时

饮歌长啸 2023-03-17 16:05:39
好吧,我在这里感觉有点傻,因为我想不通,所以就开始吧。我从 Spring Initializer 下载了最基本的 Hello World spring boot web 应用程序。我可以使用内部 tomcat 让它正常运行。但是当我打包到一个 .war 文件并部署到我的本地 tomcat 实例时,它模拟了生产环境。该应用程序失败。我已经尝试系统地通过文档更改配置以确保上下文正确,并且基本上我能找到的任何其他内容都可以解决这个问题。到目前为止没有骰子,所以我伸出手来看看这里是否有人有一些见识。该应用程序应从 URL http://localhost:8084/clariovista/返回“TEST CLARIOVISTA”当我从我的 IDE (Eclipse) 运行它时没有问题。但是当我将 .war 部署到本地 tomcat 实例时,它会抛出 500 错误消息:消息请求处理失败;嵌套异常是 org.thymeleaf.exceptions.TemplateInputException:解析模板时出错 [错误],模板可能不存在或可能无法被任何已配置的模板解析器访问目录树已正确设置。我没有更改 Spring Initializer 输出给出的目录结构。所以我不确定为什么模板位置有问题。除非那是一条红鲱鱼,还有其他事情正在发生。非常感谢任何帮助或见解。基础知识:SpringBoot 2.1.6.Release,JDK 1.8,Tomcat 8.5.27。目录树图片。pom.xml<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><parent>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-parent</artifactId>    <version>2.1.6.RELEASE</version>    <relativePath /> <!-- lookup parent from repository --></parent><groupId>com.inferworks</groupId><artifactId>clariovista</artifactId><version>0.0.1-SNAPSHOT</version><packaging>war</packaging><name>clariovista</name><description>Clario Vista Web</description><organization>    <name>Inferworks</name>    <url>Inferworks.com</url></organization><properties>    <java.version>1.8</java.version></properties><dependencies>    <dependency>        <groupId>org.springframework.boot</groupId>        <artifactId>spring-boot-starter-thymeleaf</artifactId>    </dependency>    <dependency>        <groupId>org.springframework.boot</groupId>        <artifactId>spring-boot-starter-web</artifactId>    </dependency>
查看完整描述

3 回答

?
元芳怎么了

TA贡献1798条经验 获得超7个赞

使用 jar 文件很容易,命令:maven install


<plugin>

            <groupId>org.springframework.boot</groupId>

            <artifactId>spring-boot-maven-plugin</artifactId>

            <configuration>

                <mainClass>com.dh.Application</mainClass>

                <jvmArguments>-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005

                </jvmArguments>

            </configuration>

            <executions>

                <execution>

                    <goals>

                        <goal>repackage</goal>

                    </goals>

                </execution>

            </executions>

        </plugin>


查看完整回答
反对 回复 2023-03-17
?
慕桂英546537

TA贡献1848条经验 获得超10个赞

根据您的问题描述,我希望不需要百里香。

您可以通过 2 种方式进行。

  1. 如果确实不需要,则从 pom.xml 中删除 thymeleaf 模板文件夹和 thymeleaf 依赖项并继续。

  2. 你想继续使用 thymeleaf,请添加下面的类并继续部署并尝试。

@Configuration

public class ThymeleafConfiguration {


    private static final String HTML_5 = "HTML5";


    @Bean

    public SpringTemplateEngine templateEngine() {

        final SpringTemplateEngine templateEngine = new SpringTemplateEngine();

        templateEngine.addTemplateResolver(templateResolver());

        return templateEngine;

    }


    @Bean

    public ThymeleafViewResolver viewResolver(){

        final ThymeleafViewResolver viewResolver = new ThymeleafViewResolver();

        viewResolver.setTemplateEngine(templateEngine());

        viewResolver.setViewNames(new String[]{"*.html,*.xhtml,*.txt"});

        return viewResolver;

    }


    @Bean

    public SpringResourceTemplateResolver templateResolver() {

        // SpringResourceTemplateResolver automatically integrates with Spring's

        // own resource resolution infrastructure, which is highly recommended.

        final SpringResourceTemplateResolver templateResolver = new SpringResourceTemplateResolver();

        // templateResolver.setApplicationContext(this.applicationContext);

        templateResolver.setPrefix("classpath:templates/");

        templateResolver.setSuffix(".html");

        // HTML is the default value, added here for the sake of clarity.

        templateResolver.setTemplateMode(HTML_5);

        templateResolver.setCharacterEncoding(CharEncoding.UTF_8);

        // Template cache is true by default. Set to false if you want

        // templates to be automatically updated when modified.

        templateResolver.setCacheable(true);

        return templateResolver;

    }


}


查看完整回答
反对 回复 2023-03-17
?
POPMUISE

TA贡献1765条经验 获得超5个赞

因为默认spring-boot-starter-web包含 Tomcat 。 如果你想在其他 web 容器中运行你的应用程序,你应该为 Spring MVC 排除 Tomcat,如下所示: spring-boot-starter-tomcat


<dependency>

    <groupId>org.springframework.boot</groupId>

    <artifactId>spring-boot-starter-web</artifactId>

    <exclusions>

        <!-- Exclude the Tomcat dependency -->

        <exclusion>

            <groupId>org.springframework.boot</groupId>

            <artifactId>spring-boot-starter-tomcat</artifactId>

        </exclusion>

    </exclusions>

</dependency>


查看完整回答
反对 回复 2023-03-17
  • 3 回答
  • 0 关注
  • 108 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信