Java Code Examples for org.springframework.web.servlet.config.annotation.PathMatchConfigurer#setUrlPathHelper()
The following examples show how to use
org.springframework.web.servlet.config.annotation.PathMatchConfigurer#setUrlPathHelper() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ComplianceApplication.java From pacbot with Apache License 2.0 | 5 votes |
/** * Configures the PathMatchConfigurer with UrlPathHelper * @param configurer PathMatchConfigurer */ @Override public void configurePathMatch(PathMatchConfigurer configurer) { UrlPathHelper urlPathHelper = new UrlPathHelper(); urlPathHelper.setUrlDecode(false); configurer.setUrlPathHelper(urlPathHelper); }
Example 2
Source File: StatisticsApplication.java From pacbot with Apache License 2.0 | 5 votes |
/** * Configures the PathMatchConfigurer with UrlPathHelper * @param configurer PathMatchConfigurer */ @Override public void configurePathMatch(PathMatchConfigurer configurer) { UrlPathHelper urlPathHelper = new UrlPathHelper(); urlPathHelper.setUrlDecode(false); configurer.setUrlPathHelper(urlPathHelper); }
Example 3
Source File: AssetApplication.java From pacbot with Apache License 2.0 | 5 votes |
/** * Configures the PathMatchConfigurer with UrlPathHelper * @param configurer PathMatchConfigurer */ @Override public void configurePathMatch(PathMatchConfigurer configurer) { UrlPathHelper urlPathHelper = new UrlPathHelper(); urlPathHelper.setUrlDecode(false); configurer.setUrlPathHelper(urlPathHelper); }
Example 4
Source File: PresentationConfiguration.java From hesperides with GNU General Public License v3.0 | 5 votes |
@Override public void configurePathMatch(PathMatchConfigurer configurer) { UrlPathHelper urlPathHelper = new UrlPathHelper(); urlPathHelper.setUrlDecode(false); configurer.setUrlPathHelper(urlPathHelper); configurer.setUseSuffixPatternMatch(false); // avoids bug with getInstanceFiles when instance name ends with .digit and it gets mangled }
Example 5
Source File: SpringMvcConfiguration.java From junit-servers with MIT License | 5 votes |
@Override public void configurePathMatch(PathMatchConfigurer configurer) { UrlPathHelper urlPathHelper = new UrlPathHelper(); urlPathHelper.setAlwaysUseFullPath(true); configurer.setUrlPathHelper(urlPathHelper); configurer.setUseSuffixPatternMatch(true); }
Example 6
Source File: SpringMvcConfiguration.java From junit-servers with MIT License | 5 votes |
@Override public void configurePathMatch(PathMatchConfigurer configurer) { UrlPathHelper urlPathHelper = new UrlPathHelper(); urlPathHelper.setAlwaysUseFullPath(true); configurer.setUrlPathHelper(urlPathHelper); configurer.setUseSuffixPatternMatch(true); }
Example 7
Source File: SpringMvcConfiguration.java From junit-servers with MIT License | 5 votes |
@Override public void configurePathMatch(PathMatchConfigurer configurer) { UrlPathHelper urlPathHelper = new UrlPathHelper(); urlPathHelper.setAlwaysUseFullPath(true); configurer.setUrlPathHelper(urlPathHelper); configurer.setUseSuffixPatternMatch(true); }
Example 8
Source File: SpringMvcConfiguration.java From junit-servers with MIT License | 5 votes |
@Override public void configurePathMatch(PathMatchConfigurer configurer) { UrlPathHelper urlPathHelper = new UrlPathHelper(); urlPathHelper.setAlwaysUseFullPath(true); configurer.setUrlPathHelper(urlPathHelper); configurer.setUseSuffixPatternMatch(true); }
Example 9
Source File: SpringMvcConfiguration.java From junit-servers with MIT License | 5 votes |
@Override public void configurePathMatch(PathMatchConfigurer configurer) { UrlPathHelper urlPathHelper = new UrlPathHelper(); urlPathHelper.setAlwaysUseFullPath(true); configurer.setUrlPathHelper(urlPathHelper); configurer.setUseSuffixPatternMatch(true); }
Example 10
Source File: SpringMvcConfiguration.java From junit-servers with MIT License | 5 votes |
@Override public void configurePathMatch(PathMatchConfigurer configurer) { UrlPathHelper urlPathHelper = new UrlPathHelper(); urlPathHelper.setAlwaysUseFullPath(true); configurer.setUrlPathHelper(urlPathHelper); configurer.setUseSuffixPatternMatch(true); }
Example 11
Source File: MatrixWebConfig.java From tutorials with MIT License | 5 votes |
@Override public void configurePathMatch(PathMatchConfigurer configurer) { final UrlPathHelper urlPathHelper = new UrlPathHelper(); urlPathHelper.setRemoveSemicolonContent(false); configurer.setUrlPathHelper(urlPathHelper); }
Example 12
Source File: WebConfig.java From tutorials with MIT License | 5 votes |
@Override public void configurePathMatch(final PathMatchConfigurer configurer) { final UrlPathHelper urlPathHelper = new UrlPathHelper(); urlPathHelper.setRemoveSemicolonContent(false); configurer.setUrlPathHelper(urlPathHelper); }
Example 13
Source File: LiteWebConfiguration.java From singleton with Eclipse Public License 2.0 | 4 votes |
@Override public void configurePathMatch(PathMatchConfigurer configurer) { UrlPathHelper urlPathHelper = new UrlPathHelper(); urlPathHelper.setUrlDecode(false); configurer.setUrlPathHelper(urlPathHelper); }
Example 14
Source File: WebConfiguration.java From singleton with Eclipse Public License 2.0 | 4 votes |
@Override public void configurePathMatch(PathMatchConfigurer configurer) { UrlPathHelper urlPathHelper = new UrlPathHelper(); urlPathHelper.setUrlDecode(false); configurer.setUrlPathHelper(urlPathHelper); }
Example 15
Source File: WebConfiguration.java From singleton with Eclipse Public License 2.0 | 4 votes |
@Override public void configurePathMatch(PathMatchConfigurer configurer) { UrlPathHelper urlPathHelper = new UrlPathHelper(); urlPathHelper.setUrlDecode(false); configurer.setUrlPathHelper(urlPathHelper); }
Example 16
Source File: WebConfiguration.java From api-layer with Eclipse Public License 2.0 | 4 votes |
@Override public void configurePathMatch(PathMatchConfigurer configurer) { UrlPathHelper urlPathHelper = new UrlPathHelper(); urlPathHelper.setUrlDecode(false); configurer.setUrlPathHelper(urlPathHelper); }