Merge pull request #9179 from alimate/BAEL-3993

BAEL-3993: Added Trailing slash to Fix the Relative Path Bug
This commit is contained in:
Eric Martin 2020-04-30 21:44:05 -05:00 committed by GitHub
commit e65cfc7bd0
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ public class FaviconConfiguration {
@Bean
protected ResourceHttpRequestHandler faviconRequestHandler() {
ResourceHttpRequestHandler requestHandler = new ResourceHttpRequestHandler();
ClassPathResource classPathResource = new ClassPathResource("com/baeldung/images");
ClassPathResource classPathResource = new ClassPathResource("com/baeldung/images/");
List<Resource> locations = Arrays.asList(classPathResource);
requestHandler.setLocations(locations);
return requestHandler;