【使用篇】SpringBoot访问静态资源(四)

默认的,SpringBoot会从两个地方查找静态资源:

  • classpath/static 的目录下
  • ServletContext 根目录下

一、classpath/static 的目录

在类路径下常见static目录,名称必须是static

index.html

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>静态资源访问方式一</title>
</head>
<body>
    静态资源访问方式一<br>
    <img alt="" src="images/java.png"> <!-- 不用写static-->
</body>
</html>

二、ServletContext 根目录下

在src/main中添加webapp,名称必须是webapp。

原文地址:https://www.cnblogs.com/myitnews/p/11518463.html

时间: 2024-11-09 20:26:53

【使用篇】SpringBoot访问静态资源(四)的相关文章

springboot访问静态资源

@Configuration public class WebMvcConfiguration extends WebMvcConfigurationSupport { @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry.addResourceHandler("/static/**").addResourceLocations("classpath:/st

SpringBoot学习5:访问静态资源

springboot默认从项目的resources里面的static目录下或者webapp目录下访问静态资源 方式一:在resources下新建static文件(文件名必须是static) 在浏览器中访问 方式二:新建webapp文件夹 在浏览器中访问 原文地址:https://www.cnblogs.com/duanrantao/p/10352643.html

SpringBoot: 5.访问静态资源(转)

springboot默认从项目的resources里面的static目录下或者webapp目录下访问静态资源 方式一:在resources下新建static文件(文件名必须是static) 在浏览器中访问 方式二:新建webapp文件夹 设置webapp文件夹 在浏览器中访问 原文地址:https://www.cnblogs.com/kuangzhisen/p/10427142.html

springBoot怎样访问静态资源?+静态资源简介

1.静态资源 怎样通过浏览器访问静态资源? 注意:不需要加static目录.因为只是告诉springboot目录,而不是静态资源路劲. 这时访问路径就需要加上/static 原文地址:https://www.cnblogs.com/curedfisher/p/11775716.html

springboot无法访问静态资源

无法访问static下的静态资源 1.在application.yml中添加 resources: static-locations: classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,file:./../images 2.配置webconfig @EnableWebMvc @Configuration public class WebAppConfig imple

springboot设置静态资源不拦截的方法

springboot设置静态资源不拦截的方法 springboot不拦截静态资源需配置如下的类: import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.W

idea中JSP页面不能访问静态资源(图片,js,css)

必须配置SpringMvc对访问静态资源的支持,idea默认就是在main/webapp 下的文件路径,要在web-info同级的resource文件下放置,JSP中 ${pageContext.request.contextPath}的添加 <mvc:default-servlet-handler/>的作用 优雅REST风格的资源URL不希望带 .html 或 .do 等后缀.由于早期的Spring MVC不能很好地处理静态资源,所以在web.xml中配置DispatcherServlet的

【转载】SpringMVC访问静态资源

在SpringMVC中常用的就是Controller与View.但是我们常常会需要访问静态资源,如html,js,css,image等. 默认的访问的URL都会被DispatcherServlet所拦截,但是我们希望静态资源可以直接访问.该肿么办呢? 在配置文件:web.xml可以看到: <!-- Processes application requests --> <servlet> <servlet-name>appServlet</servlet-name&

用node.js express设置路径后 子路径下的页面访问静态资源路径出问题

在routes/news_mian.js 设置了访问news_main.html 的路径 '/',通知设置一个访问news-page.html的子路径'/newspage'子路径.但是在访问loaclhost:3000/news/newspage时静态资源路径前多了一个/news导致不能找到静态资源 app.js var express=require('express'); var app=express(); var path=require('path'); var http=requir