All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.sylllys.analysed.report.config.WebConfig Maven / Gradle / Ivy

Go to download

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