SpringBoot访问html和js等静态资源配置

把静态资源放到resources/static下,这是springboot静态资源默认访问路径。

在浏览器直接ip:端口/静态资源 就可以了

 

下面的废话是好久之前写的,不用看了。。。

 

SpringBoo推荐使用thymeleaf模板作用前端页面展示,整体结构如下所示:

SpringBoot访问html和js等静态资源配置_第1张图片

这里我并没有引入thymeleaf模板,所以页面放在了pages目录下。

application.yml配置如下:

 

server:
  port: 9000
  context-path: /sso
  address: sso.server

spring:
 mvc:
  static-path-pattern: /**
    # 默认值为 classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/

我设置了context-path,所以访问的路径前缀都要有/sso。

 

1:访问html

SpringBoot访问html和js等静态资源配置_第2张图片

    在controller访问html:

@RequestMapping("/user/login")
    public String login(){
        return "/pages/login.html";
}

    注解必须为@controller
 

2:访问js

SpringBoot访问html和js等静态资源配置_第3张图片

    在页面引入js文件:

 

 

访问该页面显示js文件加载完成。

SpringBoot访问html和js等静态资源配置_第4张图片

你可能感兴趣的:(概念)