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 695e784 commit 5ca062cCopy full SHA for 5ca062c
src/main/java/ru/mystamps/web/SiteMap.java
@@ -47,6 +47,7 @@ public final class SiteMap {
47
// defined at src/main/resources/spring/DispatcherServletContext.xml
48
public static final String RESTORE_PASSWORD_PAGE_URL = "/password/restore.htm";
49
50
+ // see also error-page definition at src/main/webapp/WEB-INF/web.xml
51
public static final String NOT_FOUND_PAGE_URL = "/error/404.htm";
52
53
private SiteMap() {
src/main/webapp/WEB-INF/web.xml
@@ -32,6 +32,10 @@
32
</jsp-property-group>
33
</jsp-config>
34
35
+ <!--
36
+ see also src/main/java/ru/mystamps/web/SiteMap.java with
37
+ mapping controller to location
38
+ -->
39
<error-page>
40
<error-code>404</error-code>
41
<location>/error/404.htm</location>
0 commit comments