Author: bphillips
Date: Mon Oct 28 17:32:19 2013
New Revision: 1536436
URL: http://svn.apache.org/r1536436
Log:
initial commit of JSR 303 Bean Validation example project
Added:
struts/sandbox/trunk/struts2examples/bean_validation/ (with props)
struts/sandbox/trunk/struts2examples/bean_validation/README.txt (with
props)
struts/sandbox/trunk/struts2examples/bean_validation/pom.xml (with props)
struts/sandbox/trunk/struts2examples/bean_validation/src/
struts/sandbox/trunk/struts2examples/bean_validation/src/main/
struts/sandbox/trunk/struts2examples/bean_validation/src/main/java/
struts/sandbox/trunk/struts2examples/bean_validation/src/main/java/org/
struts/sandbox/trunk/struts2examples/bean_validation/src/main/java/org/apache/
struts/sandbox/trunk/struts2examples/bean_validation/src/main/java/org/apache/struts/
struts/sandbox/trunk/struts2examples/bean_validation/src/main/java/org/apache/struts/edit/
struts/sandbox/trunk/struts2examples/bean_validation/src/main/java/org/apache/struts/edit/action/
struts/sandbox/trunk/struts2examples/bean_validation/src/main/java/org/apache/struts/edit/action/EditAction.java
(with props)
struts/sandbox/trunk/struts2examples/bean_validation/src/main/java/org/apache/struts/edit/model/
struts/sandbox/trunk/struts2examples/bean_validation/src/main/java/org/apache/struts/edit/model/Person.java
(with props)
struts/sandbox/trunk/struts2examples/bean_validation/src/main/java/org/apache/struts/edit/model/State.java
(with props)
struts/sandbox/trunk/struts2examples/bean_validation/src/main/java/org/apache/struts/edit/service/
struts/sandbox/trunk/struts2examples/bean_validation/src/main/java/org/apache/struts/edit/service/EditService.java
(with props)
struts/sandbox/trunk/struts2examples/bean_validation/src/main/java/org/apache/struts/edit/service/EditServiceInMemory.java
(with props)
struts/sandbox/trunk/struts2examples/bean_validation/src/main/resources/
struts/sandbox/trunk/struts2examples/bean_validation/src/main/resources/log4j.dtd
(with props)
struts/sandbox/trunk/struts2examples/bean_validation/src/main/resources/log4j.xml
(with props)
struts/sandbox/trunk/struts2examples/bean_validation/src/main/resources/org/
struts/sandbox/trunk/struts2examples/bean_validation/src/main/resources/org/apache/
struts/sandbox/trunk/struts2examples/bean_validation/src/main/resources/org/apache/struts/
struts/sandbox/trunk/struts2examples/bean_validation/src/main/resources/org/apache/struts/edit/
struts/sandbox/trunk/struts2examples/bean_validation/src/main/resources/org/apache/struts/edit/action/
struts/sandbox/trunk/struts2examples/bean_validation/src/main/resources/org/apache/struts/edit/action/EditAction.properties
(with props)
struts/sandbox/trunk/struts2examples/bean_validation/src/main/resources/struts.xml
(with props)
struts/sandbox/trunk/struts2examples/bean_validation/src/main/webapp/
struts/sandbox/trunk/struts2examples/bean_validation/src/main/webapp/META-INF/
struts/sandbox/trunk/struts2examples/bean_validation/src/main/webapp/META-INF/MANIFEST.MF
(with props)
struts/sandbox/trunk/struts2examples/bean_validation/src/main/webapp/WEB-INF/
struts/sandbox/trunk/struts2examples/bean_validation/src/main/webapp/WEB-INF/web.xml
(with props)
struts/sandbox/trunk/struts2examples/bean_validation/src/main/webapp/edit.jsp
(with props)
struts/sandbox/trunk/struts2examples/bean_validation/src/main/webapp/index.jsp
(with props)
struts/sandbox/trunk/struts2examples/bean_validation/src/main/webapp/thankyou.jsp
(with props)
struts/sandbox/trunk/struts2examples/bean_validation/src/test/
struts/sandbox/trunk/struts2examples/bean_validation/src/test/java/
Propchange: struts/sandbox/trunk/struts2examples/bean_validation/
--
--- svn:ignore (added)
+++ svn:ignore Mon Oct 28 17:32:19 2013
@@ -0,0 +1,4 @@
+target
+.settings
+.classpath
+.project
Added: struts/sandbox/trunk/struts2examples/bean_validation/README.txt
URL:
http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2examples/bean_validation/README.txt?rev=1536436&view=auto
==
--- struts/sandbox/trunk/struts2examples/bean_validation/README.txt (added)
+++ struts/sandbox/trunk/struts2examples/bean_validation/README.txt Mon Oct 28
17:32:19 2013
@@ -0,0 +1,16 @@
+This is the example project referred to in the
+Struts 2 documentation, Bean Validation tutorial.
+See: http://struts.apache.org.
+
+To build the application's war file run mvn clean package
+from the project's root folder.
+
+The war file is created in the target sub-folder.
+
+Copy the war file to your Servlet container (e.g. Tomcat, GlassFish) and
+then startup the Servlet container.
+
+In a web browser go to: htt