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

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

請(qǐng)問(wèn)一下springboot如何開啟內(nèi)置tomcat的SSI服務(wù)?

請(qǐng)問(wèn)一下springboot如何開啟內(nèi)置tomcat的SSI服務(wù)?

springboot如何開啟內(nèi)置tomcat的SSI服務(wù)?
查看完整描述

3 回答

?
Cats萌萌

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

核心配置:

1234567891011@Beanpublic ServletRegistrationBean servletRegistrationBean() {    ServletRegistrationBean servlet=new ServletRegistrationBean();    servlet.setServlet(new SSIServlet());    List<String> urlMpping=new ArrayList<>(1);    urlMpping.add("*.shtml");    servlet.setUrlMappings(urlMpping);    servlet.addInitParameter("outputEncoding""UTF-8");    servlet.addInitParameter("inputEncoding""UTF-8");    return servlet;}

關(guān)鍵點(diǎn)

  • 1、shtml頁(yè)面要放在webapp下

  • 2、打jar包時(shí),spring-boot-maven-plugin 使用1.4.2.RELEASE版本

  • 3、打jar包時(shí),頁(yè)面要copy到META-INF/resources目錄下


查看完整回答
反對(duì) 回復(fù) 2019-11-02
?
富國(guó)滬深

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

首先你需要確定,如果你確實(shí)是使用springboot內(nèi)置的tomcat,你需要檢查,你的項(xiàng)目是否依賴springboot的這個(gè)jar包,即spring-boot-starter-web,如果是以maven管理項(xiàng)目的化,你直接查一下組件ID是這個(gè)的有沒(méi)有,沒(méi)有的化,需要引用

查看完整回答
反對(duì) 回復(fù) 2019-11-02
?
幕布斯7119047

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

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<compilerArguments>
<endorseddirs>${endorsed.dir}</endorseddirs>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<webXml>src/main/webapp/WEB-INF/web.xml</webXml>
<warName>user</warName>
</configuration>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>8.1.16.v20140903</version>
<configuration>
<webAppConfig>
<contextPath>/user</contextPath>
</webAppConfig>
<stopKey/>
<stopPort/>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<port>8087</port>
<path>/user</path>
<uriEncoding>UTF-8</uriEncoding>
<server>tomcat7</server>
</configuration>
</plugin>

</plugins>
</build>

在pom中配這個(gè) 然后直接用 tomcat7:run-war 來(lái)啟動(dòng)服務(wù)



查看完整回答
反對(duì) 回復(fù) 2019-11-02
  • 3 回答
  • 0 關(guān)注
  • 1107 瀏覽
慕課專欄
更多

添加回答

舉報(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)