真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Springboot默認(rèn)靜態(tài)資源路徑與手動(dòng)配置訪問路徑的方法

在application.propertis中配置

成都創(chuàng)新互聯(lián)公司專注于安化網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供安化營銷型網(wǎng)站建設(shè),安化網(wǎng)站制作、安化網(wǎng)頁設(shè)計(jì)、安化網(wǎng)站官網(wǎng)定制、微信平臺(tái)小程序開發(fā)服務(wù),打造安化網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供安化網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。

##端口號(hào)
server.port=8081
##默認(rèn)前綴
spring.mvc.view.prefix=/
## 響應(yīng)頁面默認(rèn)后綴
spring.mvc.view.suffix=.html
# 默認(rèn)值為 /**
spring.mvc.static-path-pattern=/**
# 這里設(shè)置要指向的路徑,多個(gè)使用英文逗號(hào)隔開,默認(rèn)值為 classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/
spring.resources.static-locations= classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,classpath:/****/

如果自定義訪問路徑則需要添加WebConfig配置類

package com.dakewang.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.PathMatchConfigurer;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
/**
 * 手動(dòng)配置靜態(tài)資源路徑
 * 
 */
@Configuration
public class WebConfig extends WebMvcConfigurerAdapter{
  @Override
  public void configurePathMatch(PathMatchConfigurer configurer) {
    configurer.setUseSuffixPatternMatch(false).
        setUseTrailingSlashMatch(true);
  }
}

在controller中

/**
 * 跳轉(zhuǎn)index.html頁面
 * @return
 */
@RequestMapping("/index")
public String indexHtml() {
  return "index";
}

在瀏覽器中訪問地址

localhost:8081/index

以上所述是小編給大家介紹的Spring boot 默認(rèn)靜態(tài)資源路徑與手動(dòng)配置訪問路徑的方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對創(chuàng)新互聯(lián)網(wǎng)站的支持!


文章題目:Springboot默認(rèn)靜態(tài)資源路徑與手動(dòng)配置訪問路徑的方法
瀏覽路徑:http://weahome.cn/article/pjsepe.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部