io.github.sylllys.analysed.report.config.WebConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sylllys-analysed-report Show documentation
Show all versions of sylllys-analysed-report Show documentation
Analysed reported will be produced based on the history of test execution records and details
The newest version!
package io.github.sylllys.analysed.report.config;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
@ComponentScan
public class WebConfig implements WebMvcConfigurer {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/**").addResourceLocations("/");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy