Reputation: 65
I am unable to load JS and CSS file from webcontent folder.My login page goes without formatting please suggest me how to load this I am not using maven. Plz find the image.
Upvotes: 0
Views: 266
Reputation: 427
1) Create "resources" folder.
2) Add this in your xml file:
<mvc:resources mapping="/resources/**" location="/resources/" />
3)"Use" it in your page:
<link href="<c:url value="/resources/name_of_file.css" />" rel="stylesheet">
If you use Java Config, something like this will do the job:
@Configuration
@EnableWebMvc
public class MvcConfig extends WebMvcConfigurerAdapter {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry
.addResourceHandler("/resources/**")
.addResourceLocations("/resources/");
}
}
Upvotes: 1