io.geewit.web.springmvc.configuration.RequestMappingInfoConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gw-web-utils Show documentation
Show all versions of gw-web-utils Show documentation
A Java Utils Libraray By Geewit
The newest version!
package io.geewit.web.springmvc.configuration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping;
@ConditionalOnExpression("${request.mappings.info.endpoint.enable:true}")
@ConditionalOnClass({RequestMappingHandlerMapping.class})
@Configuration
public class RequestMappingInfoConfiguration {
}