Java tutorial
/****************************************************************************** * Copyright (C) 2014-2014 lastrix * * This file is part of DND.Server. * * * * DND.Server is free software: you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation, either version 2 of the License, or * * (at your option) any later version. * * * * DND.Server is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with DND.Server. If not, see <http://www.gnu.org/licenses/>. * ******************************************************************************/ package org.lastrix.firstbit.config; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.EnableWebMvc; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; @Configuration @EnableWebMvc public class WebConfig extends WebMvcConfigurerAdapter { @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry.addResourceHandler("/css/**").addResourceLocations("classpath:/css/"); registry.addResourceHandler("/img/**").addResourceLocations("classpath:/img/"); registry.addResourceHandler("/js/**").addResourceLocations("classpath:/js/"); } }