summaryrefslogtreecommitdiffstats
path: root/sandbox/rfeng/sca-java-2.x/implementation-spring/helloworld-spring-webapp/src/main/webapp/WEB-INF/views/welcome.jsp
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/rfeng/sca-java-2.x/implementation-spring/helloworld-spring-webapp/src/main/webapp/WEB-INF/views/welcome.jsp')
-rw-r--r--sandbox/rfeng/sca-java-2.x/implementation-spring/helloworld-spring-webapp/src/main/webapp/WEB-INF/views/welcome.jsp46
1 files changed, 46 insertions, 0 deletions
diff --git a/sandbox/rfeng/sca-java-2.x/implementation-spring/helloworld-spring-webapp/src/main/webapp/WEB-INF/views/welcome.jsp b/sandbox/rfeng/sca-java-2.x/implementation-spring/helloworld-spring-webapp/src/main/webapp/WEB-INF/views/welcome.jsp
new file mode 100644
index 0000000000..7d8f41060f
--- /dev/null
+++ b/sandbox/rfeng/sca-java-2.x/implementation-spring/helloworld-spring-webapp/src/main/webapp/WEB-INF/views/welcome.jsp
@@ -0,0 +1,46 @@
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
+<%@page contentType="text/html;charset=UTF-8"%>
+<%@page pageEncoding="UTF-8"%>
+<%@ page session="false" %>
+<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
+<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
+<html>
+<head>
+ <META http-equiv="Content-Type" content="text/html;charset=UTF-8">
+ <title><fmt:message key="welcome.title"/></title>
+</head>
+<body>
+<div class="container">
+ <h1>
+ <fmt:message key="welcome.title"/>
+ </h1>
+ <p>
+ Locale = ${pageContext.response.locale}
+ </p>
+ <hr>
+ <ul>
+ <li> <a href="?locale=en_us">us</a> </li>
+ </ul>
+ <ul>
+ <li><a href="account">@Controller Example</a></li>
+ </ul>
+</div>
+</body>
+</html> \ No newline at end of file