我正在使用角框架的春季啓動應用程序。我已經結構化的項目如下:春季啓動Web應用程序不提供靜態內容
- 的src/main/java的:彈簧引導文件,控制器,持久性
- 的src/main /資源:application.properties中
- 的src/main /應用程序:「 web應用」的文件,有角的,CSS,模塊
爲了具有彈簧提供靜態內容下/應用我已經通過重寫addResourceHandlers方法擴展的類WebMvcConfigurerAdapter:
@EnableWebMvc
@Configuration
@ComponentScan(basePackages = { "com.myapp.controller" })
public class WebMvcConfig extends WebMvcConfigurerAdapter {
private static final String[] CLASSPATH_RESOURCE_LOCATIONS = { "classpath:/META-INF/resources/",
"classpath:/resources/", "/" }; //src/main/webapp works by default
private static final String[] RESOURCE_LOCATIONS = { "classpath:/src/main/app/", "classpath:/src/main/app/" };
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
if (!registry.hasMappingForPattern("/webjars/**")) {
registry.addResourceHandler("/webjars/**").addResourceLocations("classpath:/META-INF/resources/webjars/");
}
if (!registry.hasMappingForPattern("/**")) {
registry.addResourceHandler("/**").addResourceLocations(CLASSPATH_RESOURCE_LOCATIONS).setCachePeriod(0);
}
if (!registry.hasMappingForPattern("/app/**")) {
registry.addResourceHandler("/app/**").addResourceLocations(RESOURCE_LOCATIONS).setCachePeriod(0);
}
}}
當嘗試使用 http://localhost:8080/app/app.html
如果我重新命名成/ webapp的我能夠針對http://localhost:8080/app.html
/app文件夾,我得到一個HTTP錯誤404由於某些原因要訪問角度主文件。我肯定錯過了一些東西,但無法弄清楚它是什麼。謝謝
您在應用程序下有'src/main/app'。你是否配置了Maven或Gradle來包含該目錄?此外,爲什麼不遵循標準的Spring Boot約定來實現靜態內容? – geoand 2014-09-22 10:33:19
我建議閱讀spring引用參考指南(尤其是那些默認已經映射的引用)和使用webjars。基本上你的WebMvcConfig類中有什麼是Spring Boot已經完成的,所以你只是複雜的事情。 – 2014-09-22 13:01:27
@geoand是的,我使用build-helper-maven-plugin將源目錄的'src/main/app'添加到maven。使用標準的src/main/static和評論WebMvcConfig類我仍然有同樣的問題。 – user3278795 2014-09-22 13:28:49