We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 246325a commit 364442bCopy full SHA for 364442b
articles/flow/integrations/spring/configuration.adoc
@@ -206,8 +206,7 @@ FilterRegistrationBean<?> publicImagesAliasFilter(@Value("${vaadin.url-mapping}"
206
throws ServletException, IOException {
207
// Remove Vaadin URL mapping from the path and forward the request
208
String path = request.getRequestURI().substring(baseMapping.length());
209
- request.getRequestDispatcher(path)
210
- forward(request, response);
+ request.getRequestDispatcher(path).forward(request, response);
211
}
212
});
213
registrationBean.addUrlPatterns(baseMapping + "/images/*");
0 commit comments