Update web.xml to servlet 3.0

This commit is contained in:
Paulo Gustavo Veiga 2022-01-11 20:44:47 -08:00
parent fc182bc69f
commit 451c181fd6
3 changed files with 4 additions and 6 deletions

View File

@ -22,7 +22,6 @@ public interface Messages {
String EMAIL_ALREADY_EXIST = "EMAIL_ALREADY_EXIST"; String EMAIL_ALREADY_EXIST = "EMAIL_ALREADY_EXIST";
String NO_VALID_EMAIL_ADDRESS = "NO_VALID_EMAIL_ADDRESS"; String NO_VALID_EMAIL_ADDRESS = "NO_VALID_EMAIL_ADDRESS";
String FIELD_REQUIRED = "FIELD_REQUIRED"; String FIELD_REQUIRED = "FIELD_REQUIRED";
String IMPORT_MAP_ERROR = "IMPORT_MAP_ERROR";
String MAP_TITLE_ALREADY_EXISTS = "MAP_TITLE_ALREADY_EXISTS"; String MAP_TITLE_ALREADY_EXISTS = "MAP_TITLE_ALREADY_EXISTS";
String LABEL_TITLE_ALREADY_EXISTS = "LABEL_TITLE_ALREADY_EXISTS"; String LABEL_TITLE_ALREADY_EXISTS = "LABEL_TITLE_ALREADY_EXISTS";
String PASSWORD_MISMATCH = "PASSWORD_MISMATCH"; String PASSWORD_MISMATCH = "PASSWORD_MISMATCH";

View File

@ -11,7 +11,6 @@ CREATOR=Creator
WELCOME=Welcome WELCOME=Welcome
SHARE=Share SHARE=Share
UNEXPECTED_ERROR=An unexpected error has occurred. UNEXPECTED_ERROR=An unexpected error has occurred.
IMPORT_MAP_ERROR=FreeMind file could not be imported. {0}
MAP_TITLE_ALREADY_EXISTS=You have already a map with the same name MAP_TITLE_ALREADY_EXISTS=You have already a map with the same name
LABEL_TITLE_ALREADY_EXISTS=You have already a label with the same name LABEL_TITLE_ALREADY_EXISTS=You have already a label with the same name
# Properties used on the tutorial mindmap .... # Properties used on the tutorial mindmap ....

View File

@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="2.4"> version="3.1">
<filter> <filter>
<filter-name>charsetFilter</filter-name> <filter-name>charsetFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param> <init-param>