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:
authorrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2011-03-21 21:39:36 +0000
committerrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2011-03-21 21:39:36 +0000
commit8ef8cae3deb705e67aa0f10886ea4a15d25bfadf (patch)
treed56e379e704ab1458c7a15854dc25288a14edf80 /sandbox/rfeng/sca-java-2.x/implementation-spring/helloworld-spring-webapp/src/main/webapp/WEB-INF/views/welcome.jsp
parent9cb48aedd3564362336aea43a44436bb304bf685 (diff)
Adding missing files
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1083972 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-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