저는 Java와 Spring을 처음 사용합니다. 내 앱 루트 http://localhost:8080/
를 정적으로 매핑하려면 어떻게 index.html
해야합니까? 내가 http://localhost:8080/index.html
잘 작동 한다면 .
내 앱 구조는 다음과 같습니다
내 config\WebConfig.java
모습은 다음과 같습니다.
@Configuration
@EnableWebMvc
@ComponentScan
public class WebConfig extends WebMvcConfigurerAdapter {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/**").addResourceLocations("/");
}
}
추가하려고 registry.addResourceHandler("/").addResourceLocations("/index.html");
했지만 실패합니다.
http://localhost:8080/appName
주지만 내가 필요로하는 것은 아닙니다.