资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

Springboot默认静态资源路径与手动配置访问路径的方法

在application.propertis中配置

成都创新互联公司专注于安化网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供安化营销型网站建设,安化网站制作、安化网页设计、安化网站官网定制、微信平台小程序开发服务,打造安化网络公司原创品牌,更为您提供安化网站排名全网营销落地服务。

##端口号
server.port=8081
##默认前缀
spring.mvc.view.prefix=/
## 响应页面默认后缀
spring.mvc.view.suffix=.html
# 默认值为 /**
spring.mvc.static-path-pattern=/**
# 这里设置要指向的路径,多个使用英文逗号隔开,默认值为 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;
/**
 * 手动配置静态资源路径
 * 
 */
@Configuration
public class WebConfig extends WebMvcConfigurerAdapter{
  @Override
  public void configurePathMatch(PathMatchConfigurer configurer) {
    configurer.setUseSuffixPatternMatch(false).
        setUseTrailingSlashMatch(true);
  }
}

在controller中

/**
 * 跳转index.html页面
 * @return
 */
@RequestMapping("/index")
public String indexHtml() {
  return "index";
}

在浏览器中访问地址

localhost:8081/index

以上所述是小编给大家介绍的Spring boot 默认静态资源路径与手动配置访问路径的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对创新互联网站的支持!


标题名称:Springboot默认静态资源路径与手动配置访问路径的方法
浏览路径:http://cdkjz.cn/article/pjsepe.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

业务热线:400-028-6601 / 大客户专线   成都:13518219792   座机:028-86922220