Download spring rest Free Java Code
Description
Sample project for Spring 3 REST style web application.
Source Files
The download file spring-rest-master.zip has the following entries.
README.md//www.j a va2s . c o m
rest-controlleradvice/.classpath
rest-controlleradvice/.gitignore
rest-controlleradvice/.project
rest-controlleradvice/.settings/.jsdtscope
rest-controlleradvice/.settings/org.eclipse.jdt.core.prefs
rest-controlleradvice/.settings/org.eclipse.m2e.core.prefs
rest-controlleradvice/.settings/org.eclipse.wst.common.component
rest-controlleradvice/.settings/org.eclipse.wst.common.project.facet.core.xml
rest-controlleradvice/.settings/org.eclipse.wst.jsdt.ui.superType.container
rest-controlleradvice/.settings/org.eclipse.wst.jsdt.ui.superType.name
rest-controlleradvice/pom.xml
rest-controlleradvice/src/main/java/log4j.xml
rest-controlleradvice/src/main/java/xpadro/spring/rest/controller/AddPersonController.java
rest-controlleradvice/src/main/java/xpadro/spring/rest/controller/GetPersonController.java
rest-controlleradvice/src/main/java/xpadro/spring/rest/controller/UpdatePersonController.java
rest-controlleradvice/src/main/java/xpadro/spring/rest/controller/advice/CentralControllerHandler.java
rest-controlleradvice/src/main/java/xpadro/spring/rest/exception/PersonNotFoundException.java
rest-controlleradvice/src/main/java/xpadro/spring/rest/model/Person.java
rest-controlleradvice/src/main/java/xpadro/spring/rest/repository/PersonRepository.java
rest-controlleradvice/src/main/java/xpadro/spring/rest/repository/impl/PersonRepositoryImpl.java
rest-controlleradvice/src/main/java/xpadro/spring/rest/validator/PersonValidator.java
rest-controlleradvice/src/main/resources/xpadro/spring/rest/configuration/app-context.xml
rest-controlleradvice/src/main/resources/xpadro/spring/rest/configuration/root-context.xml
rest-controlleradvice/src/main/webapp/WEB-INF/web.xml
rest-controlleradvice/src/main/webapp/index.jsp
rest-controlleradvice/src/test/java/xpadro/spring/rest/client/PersonRestServiceTesting.java
rest-converters/.classpath
rest-converters/.gitignore
rest-converters/.project
rest-converters/.settings/.jsdtscope
rest-converters/.settings/org.eclipse.jdt.core.prefs
rest-converters/.settings/org.eclipse.m2e.core.prefs
rest-converters/.settings/org.eclipse.wst.common.component
rest-converters/.settings/org.eclipse.wst.common.project.facet.core.xml
rest-converters/.settings/org.eclipse.wst.jsdt.ui.superType.container
rest-converters/.settings/org.eclipse.wst.jsdt.ui.superType.name
rest-converters/pom.xml
rest-converters/src/main/java/xpadro/spring/rest/controller/RestController.java
rest-converters/src/main/java/xpadro/spring/rest/model/Car.java
rest-converters/src/main/java/xpadro/spring/rest/model/User.java
rest-converters/src/main/java/xpadro/spring/rest/repository/CarRepository.java
rest-converters/src/main/java/xpadro/spring/rest/repository/UserRepository.java
rest-converters/src/main/java/xpadro/spring/rest/repository/impl/CarRepositoryImpl.java
rest-converters/src/main/java/xpadro/spring/rest/repository/impl/UserRepositoryImpl.java
rest-converters/src/main/resources/xpadro/spring/rest/configuration/app-context.xml
rest-converters/src/main/resources/xpadro/spring/rest/configuration/root-context.xml
rest-converters/src/main/webapp/WEB-INF/web.xml
rest-converters/src/main/webapp/index.jsp
rest-converters/src/test/java/xpadro/spring/rest/client/RestTesting.java
rest-subresources/.classpath
rest-subresources/.gitignore
rest-subresources/.project
rest-subresources/.settings/.jsdtscope
rest-subresources/.settings/org.eclipse.jdt.core.prefs
rest-subresources/.settings/org.eclipse.m2e.core.prefs
rest-subresources/.settings/org.eclipse.wst.common.component
rest-subresources/.settings/org.eclipse.wst.common.project.facet.core.xml
rest-subresources/.settings/org.eclipse.wst.jsdt.ui.superType.container
rest-subresources/.settings/org.eclipse.wst.jsdt.ui.superType.name
rest-subresources/pom.xml
rest-subresources/src/main/java/xpadro/rest/ri/model/Item.java
rest-subresources/src/main/java/xpadro/rest/ri/model/TypeAItem.java
rest-subresources/src/main/java/xpadro/rest/ri/model/TypeBItem.java
rest-subresources/src/main/java/xpadro/rest/ri/repository/TypeAItemRepository.java
rest-subresources/src/main/java/xpadro/rest/ri/repository/TypeBItemRepository.java
rest-subresources/src/main/java/xpadro/rest/ri/resources/ItemResource.java
rest-subresources/src/main/java/xpadro/rest/ri/resources/TypeAResource.java
rest-subresources/src/main/java/xpadro/rest/ri/resources/TypeBResource.java
rest-subresources/src/main/java/xpadro/rest/ri/resources/WarehouseResource.java
rest-subresources/src/main/webapp/WEB-INF/web.xml
rest-subresources/src/main/webapp/index.jsp
rest_test/.classpath
rest_test/.gitignore
rest_test/.project
rest_test/.settings/.jsdtscope
rest_test/.settings/org.eclipse.jdt.core.prefs
rest_test/.settings/org.eclipse.wst.common.component
rest_test/.settings/org.eclipse.wst.common.project.facet.core.xml
rest_test/.settings/org.eclipse.wst.jsdt.ui.superType.container
rest_test/.settings/org.eclipse.wst.jsdt.ui.superType.name
rest_test/.settings/org.maven.ide.eclipse.prefs
rest_test/pom.xml
rest_test/src/main/java/log4j.xml
rest_test/src/main/java/xpadro/tutorial/rest/controller/WarehouseController.java
rest_test/src/main/java/xpadro/tutorial/rest/exception/ProductNotFoundException.java
rest_test/src/main/java/xpadro/tutorial/rest/model/Product.java
rest_test/src/main/java/xpadro/tutorial/rest/model/Warehouse.java
rest_test/src/main/java/xpadro/tutorial/rest/repository/WarehouseRepository.java
rest_test/src/main/java/xpadro/tutorial/rest/repository/WarehouseRepositoryImpl.java
rest_test/src/main/resources/xpadro/tutorial/rest/configuration/app-context.xml
rest_test/src/main/resources/xpadro/tutorial/rest/configuration/root-context.xml
rest_test/src/main/webapp/WEB-INF/web.xml
rest_test/src/test/java/xpadro/tutorial/rest/client/TestWarehouse.java
Download
Click the following link to download spring-rest-master.zip.
spring-rest-master.zip