Define static resources (HTML, JS, CSS, and so on) that are not blocked by SPRINGMVC, common methods that do not require each directory to be set

Source: Internet
Author: User



SPRINGMVC <mvc:resources mapping= "* * *" location= "* * *" > tags appear in spring3.0.4, primarily to define access to static resources.



Search the internet for a bit with this configuration related articles, most recommend the following. However, in this case, if there is a new directory, you have to add a configuration, more trouble.





<!-- For static resources -->  
<mvc:resources mapping="/image/**" location="/images/" />  
<mvc:resources mapping="/js/**" location="/js/" />  
<mvc:resources mapping="/css/**" location="/css/" />  
<mvc:resources mapping="/html/**" location="/html/" />  
<mvc:resources mapping="/software/**" location="/software/" />  

The following is configured directly according to the suffix of the static file, more general, do not configure one for each subdirectory:







<mvc:resources location="/" mapping="/**/*.html"/>
	<mvc:resources location="/" mapping="/**/*.js"/>
	<mvc:resources location="/" mapping="/**/*.css"/>
	<mvc:resources location="/" mapping="/**/*.png"/>
	<mvc:resources location="/" mapping="/**/*.gif"/>

(original articles, reproduced please indicate the CSDN blog from Clement-xu. )





Copyright NOTICE: This article is the original article, reprint please indicate the CSDN blog which is transferred from Clement-xu.



Define static resources (HTML, JS, CSS, and so on) that are not blocked by SPRINGMVC, common methods that do not require each directory to be set


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.