第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

Spring Boot 應(yīng)用程序在 IDE 中運(yùn)行時(shí)工作,但當(dāng)部署為 war 文件時(shí)

Spring Boot 應(yīng)用程序在 IDE 中運(yùn)行時(shí)工作,但當(dāng)部署為 war 文件時(shí)

飲歌長(zhǎng)嘯 2023-03-17 16:05:39
好吧,我在這里感覺(jué)有點(diǎn)傻,因?yàn)槲蚁氩煌?,所以就開(kāi)始吧。我從 Spring Initializer 下載了最基本的 Hello World spring boot web 應(yīng)用程序。我可以使用內(nèi)部 tomcat 讓它正常運(yùn)行。但是當(dāng)我打包到一個(gè) .war 文件并部署到我的本地 tomcat 實(shí)例時(shí),它模擬了生產(chǎn)環(huán)境。該應(yīng)用程序失敗。我已經(jīng)嘗試系統(tǒng)地通過(guò)文檔更改配置以確保上下文正確,并且基本上我能找到的任何其他內(nèi)容都可以解決這個(gè)問(wèn)題。到目前為止沒(méi)有骰子,所以我伸出手來(lái)看看這里是否有人有一些見(jiàn)識(shí)。該應(yīng)用程序應(yīng)從 URL http://localhost:8084/clariovista/返回“TEST CLARIOVISTA”當(dāng)我從我的 IDE (Eclipse) 運(yùn)行它時(shí)沒(méi)有問(wèn)題。但是當(dāng)我將 .war 部署到本地 tomcat 實(shí)例時(shí),它會(huì)拋出 500 錯(cuò)誤消息:消息請(qǐng)求處理失敗;嵌套異常是 org.thymeleaf.exceptions.TemplateInputException:解析模板時(shí)出錯(cuò) [錯(cuò)誤],模板可能不存在或可能無(wú)法被任何已配置的模板解析器訪問(wèn)目錄樹(shù)已正確設(shè)置。我沒(méi)有更改 Spring Initializer 輸出給出的目錄結(jié)構(gòu)。所以我不確定為什么模板位置有問(wèn)題。除非那是一條紅鯡魚(yú),還有其他事情正在發(fā)生。非常感謝任何幫助或見(jiàn)解?;A(chǔ)知識(shí):SpringBoot 2.1.6.Release,JDK 1.8,Tomcat 8.5.27。目錄樹(shù)圖片。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貢獻(xiàn)1798條經(jīng)驗(yàn) 獲得超7個(gè)贊

使用 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>


查看完整回答
反對(duì) 回復(fù) 2023-03-17
?
慕桂英546537

TA貢獻(xiàn)1848條經(jīng)驗(yàn) 獲得超10個(gè)贊

根據(jù)您的問(wèn)題描述,我希望不需要百里香。

您可以通過(guò) 2 種方式進(jìn)行。

  1. 如果確實(shí)不需要,則從 pom.xml 中刪除 thymeleaf 模板文件夾和 thymeleaf 依賴(lài)項(xiàng)并繼續(xù)。

  2. 你想繼續(xù)使用 thymeleaf,請(qǐng)?zhí)砑酉旅娴念?lèi)并繼續(xù)部署并嘗試。

@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;

    }


}


查看完整回答
反對(duì) 回復(fù) 2023-03-17
?
POPMUISE

TA貢獻(xiàn)1765條經(jīng)驗(yàn) 獲得超5個(gè)贊

因?yàn)槟J(rèn)spring-boot-starter-web包含 Tomcat 。 如果你想在其他 web 容器中運(yùn)行你的應(yīng)用程序,你應(yīng)該為 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>


查看完整回答
反對(duì) 回復(fù) 2023-03-17
  • 3 回答
  • 0 關(guān)注
  • 168 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)