├── myrestaurants-original ├── .gitignore ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.jdt.core.prefs │ ├── org.maven.ide.eclipse.prefs │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── .jsdtscope │ ├── org.eclipse.wst.common.component │ └── org.eclipse.wst.validation.prefs ├── src │ └── main │ │ ├── webapp │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── WEB-INF │ │ │ ├── classes │ │ │ │ ├── alt.properties │ │ │ │ └── standard.properties │ │ │ ├── views │ │ │ │ ├── index-template.jspx │ │ │ │ ├── header.jspx │ │ │ │ ├── index.jspx │ │ │ │ ├── restaurants │ │ │ │ │ ├── update.jspx │ │ │ │ │ ├── views.xml │ │ │ │ │ ├── show.jspx │ │ │ │ │ ├── list.jspx │ │ │ │ │ └── create.jspx │ │ │ │ ├── useraccounts │ │ │ │ │ ├── views.xml │ │ │ │ │ ├── update.jspx │ │ │ │ │ ├── list.jspx │ │ │ │ │ ├── create.jspx │ │ │ │ │ └── show.jspx │ │ │ │ ├── views.xml │ │ │ │ ├── resourceNotFound.jspx │ │ │ │ ├── uncaughtException.jspx │ │ │ │ ├── dataAccessFailure.jspx │ │ │ │ ├── footer.jspx │ │ │ │ └── menu.jspx │ │ │ ├── tags │ │ │ │ ├── util │ │ │ │ │ ├── placeholder.tagx │ │ │ │ │ ├── load-scripts.tagx │ │ │ │ │ ├── theme.tagx │ │ │ │ │ ├── language.tagx │ │ │ │ │ └── panel.tagx │ │ │ │ ├── menu │ │ │ │ │ ├── menu.tagx │ │ │ │ │ ├── category.tagx │ │ │ │ │ └── item.tagx │ │ │ │ └── form │ │ │ │ │ └── dependency.tagx │ │ │ ├── layouts │ │ │ │ ├── layouts.xml │ │ │ │ └── default.jspx │ │ │ └── i18n │ │ │ │ └── application.properties │ │ └── images │ │ │ ├── add.png │ │ │ ├── en.png │ │ │ ├── list.png │ │ │ ├── show.png │ │ │ ├── create.png │ │ │ ├── delete.png │ │ │ ├── update.png │ │ │ ├── fav-del.png │ │ │ ├── fav-new.png │ │ │ ├── favicon.ico │ │ │ ├── spring-logo.png │ │ │ ├── banner-graphic.png │ │ │ ├── resultset_last.png │ │ │ ├── resultset_next.png │ │ │ ├── resultset_first.png │ │ │ ├── resultset_previous.png │ │ │ └── springsource-logo.png │ │ ├── resources │ │ ├── META-INF │ │ │ ├── spring │ │ │ │ └── database.properties │ │ │ └── persistence.xml │ │ ├── schema.sql │ │ └── log4j.properties │ │ └── java │ │ └── com │ │ └── springone │ │ └── myrestaurants │ │ ├── dao │ │ ├── RestaurantDao.java │ │ └── UserAccountDao.java │ │ ├── web │ │ └── BaseApplicationController.java │ │ └── domain │ │ └── Restaurant.java ├── .springBeans ├── .classpath └── .project ├── myrestaurants-social ├── .gitignore ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.ws.service.policy.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.maven.ide.eclipse.prefs │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── .jsdtscope │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.validation.prefs │ └── org.eclipse.jst.jsp.core.prefs ├── src │ ├── main │ │ ├── webapp │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── WEB-INF │ │ │ │ ├── classes │ │ │ │ │ ├── alt.properties │ │ │ │ │ └── standard.properties │ │ │ │ ├── views │ │ │ │ │ ├── topn │ │ │ │ │ │ ├── views.xml │ │ │ │ │ │ └── list.jspx │ │ │ │ │ ├── index-template.jspx │ │ │ │ │ ├── friends │ │ │ │ │ │ ├── show.jspx │ │ │ │ │ │ ├── update.jspx │ │ │ │ │ │ ├── list.jspx │ │ │ │ │ │ ├── create.jspx │ │ │ │ │ │ └── views.xml │ │ │ │ │ ├── header.jspx │ │ │ │ │ ├── index.jspx │ │ │ │ │ ├── restaurants │ │ │ │ │ │ ├── update.jspx │ │ │ │ │ │ ├── views.xml │ │ │ │ │ │ ├── show.jspx │ │ │ │ │ │ ├── list.jspx │ │ │ │ │ │ └── create.jspx │ │ │ │ │ ├── recommendations │ │ │ │ │ │ ├── show.jspx │ │ │ │ │ │ ├── list.jspx │ │ │ │ │ │ ├── views.xml │ │ │ │ │ │ ├── update.jspx │ │ │ │ │ │ └── create.jspx │ │ │ │ │ ├── useraccounts │ │ │ │ │ │ ├── views.xml │ │ │ │ │ │ ├── list.jspx │ │ │ │ │ │ ├── update.jspx │ │ │ │ │ │ ├── create.jspx │ │ │ │ │ │ └── show.jspx │ │ │ │ │ ├── views.xml │ │ │ │ │ ├── resourceNotFound.jspx │ │ │ │ │ ├── uncaughtException.jspx │ │ │ │ │ ├── dataAccessFailure.jspx │ │ │ │ │ └── footer.jspx │ │ │ │ ├── tags │ │ │ │ │ ├── util │ │ │ │ │ │ ├── placeholder.tagx │ │ │ │ │ │ ├── load-scripts.tagx │ │ │ │ │ │ ├── theme.tagx │ │ │ │ │ │ ├── language.tagx │ │ │ │ │ │ └── panel.tagx │ │ │ │ │ ├── menu │ │ │ │ │ │ ├── menu.tagx │ │ │ │ │ │ ├── category.tagx │ │ │ │ │ │ └── item.tagx │ │ │ │ │ └── form │ │ │ │ │ │ └── dependency.tagx │ │ │ │ └── layouts │ │ │ │ │ ├── layouts.xml │ │ │ │ │ └── default.jspx │ │ │ └── images │ │ │ │ ├── add.png │ │ │ │ ├── en.png │ │ │ │ ├── Thumbs.db │ │ │ │ ├── create.png │ │ │ │ ├── delete.png │ │ │ │ ├── list.png │ │ │ │ ├── show.png │ │ │ │ ├── update.png │ │ │ │ ├── fav-del.png │ │ │ │ ├── fav-new.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── thumbsup.png │ │ │ │ ├── recommend.gif │ │ │ │ ├── spring-logo.png │ │ │ │ ├── banner-graphic.png │ │ │ │ ├── resultset_first.png │ │ │ │ ├── resultset_last.png │ │ │ │ ├── resultset_next.png │ │ │ │ ├── resultset_previous.png │ │ │ │ └── springsource-logo.png │ │ ├── resources │ │ │ ├── META-INF │ │ │ │ ├── spring │ │ │ │ │ ├── database.properties │ │ │ │ │ └── applicationContext-security.xml │ │ │ │ └── persistence.xml │ │ │ ├── schema.sql │ │ │ └── log4j.properties │ │ └── java │ │ │ └── com │ │ │ └── springone │ │ │ └── myrestaurants │ │ │ ├── web │ │ │ ├── FriendFormBean.java │ │ │ ├── RatedRestaurantBean.java │ │ │ └── RecommendationFormBean.java │ │ │ ├── domain │ │ │ ├── RatedRestaurant.java │ │ │ ├── Recommendation.java │ │ │ └── TopRatedRestaurantTraverser.java │ │ │ └── data │ │ │ └── RestaurantRepository.java │ └── test │ │ ├── resources │ │ └── com │ │ │ └── springone │ │ │ └── myrestaurants │ │ │ ├── domain │ │ │ └── TopRatedRestaurantFinderTest-context.xml │ │ │ └── data │ │ │ ├── RestaurantRepositoryTest-context.xml │ │ │ ├── UserAccountRepositoryTest-context.xml │ │ │ └── UserAccountRelationshipsTest-context.xml │ │ └── java │ │ └── com │ │ └── springdeveloper │ │ └── data │ │ └── neo │ │ └── PrintNeo4j.java ├── .springBeans ├── .classpath └── .project ├── imdb ├── .gitignore ├── src │ ├── main │ │ ├── webapp │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── bg.png │ │ │ ├── menu.png │ │ │ ├── actor.png │ │ │ ├── movie.png │ │ │ ├── setup.png │ │ │ ├── favicon.ico │ │ │ ├── gradient.png │ │ │ ├── jsp │ │ │ │ ├── include.jsp │ │ │ │ ├── menu.jsp │ │ │ │ ├── setup-message.jsp │ │ │ │ ├── head.jsp │ │ │ │ ├── setup.jsp │ │ │ │ ├── actor.jsp │ │ │ │ ├── movie.jsp │ │ │ │ ├── actor-list.jsp │ │ │ │ └── movie-list.jsp │ │ │ ├── index.jsp │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ ├── java │ │ │ └── org │ │ │ │ └── neo4j │ │ │ │ └── examples │ │ │ │ └── imdb │ │ │ │ ├── web │ │ │ │ ├── SetupForm.java │ │ │ │ ├── ActorForm.java │ │ │ │ ├── MovieForm.java │ │ │ │ ├── SetupControllerDelegate.java │ │ │ │ ├── FindControllerDelegate.java │ │ │ │ ├── SetupController.java │ │ │ │ ├── ActorInfo.java │ │ │ │ ├── MovieInfo.java │ │ │ │ ├── FindController.java │ │ │ │ └── ImdbSetupControllerDelegate.java │ │ │ │ ├── domain │ │ │ │ ├── RelTypes.java │ │ │ │ ├── ActorRepository.java │ │ │ │ ├── LookupRepository.java │ │ │ │ ├── MovieRepository.java │ │ │ │ ├── ImdbSearchEngine.java │ │ │ │ ├── Role.java │ │ │ │ ├── Movie.java │ │ │ │ ├── Actor.java │ │ │ │ ├── Lookup.java │ │ │ │ └── ImdbService.java │ │ │ │ └── parser │ │ │ │ ├── MovieData.java │ │ │ │ ├── ActorData.java │ │ │ │ ├── ImdbReader.java │ │ │ │ ├── RoleData.java │ │ │ │ └── ImdbReaderImpl.java │ │ ├── resources │ │ │ └── data │ │ │ │ ├── actors.list.gz │ │ │ │ ├── movies.list.gz │ │ │ │ └── actresses.list.gz │ │ └── assembly │ │ │ └── imdb-src.xml │ ├── test │ │ └── resources │ │ │ └── icons │ │ │ ├── IMDB.OUTGOING.png │ │ │ ├── ACTS_IN.INCOMING.png │ │ │ ├── ACTS_IN.OUTGOING.png │ │ │ ├── PART_OF_NAME.OUTGOING.png │ │ │ └── PART_OF_TITLE.OUTGOING.png │ └── site │ │ ├── apt │ │ └── index.apt │ │ └── site.xml ├── doc │ └── images │ │ └── IMDB1.png └── README.md ├── .gitignore ├── hello-worlds ├── .gitignore ├── README.md ├── src │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── springframework │ │ │ │ └── data │ │ │ │ └── neo4j │ │ │ │ └── examples │ │ │ │ └── hellograph │ │ │ │ ├── RelationshipTypes.java │ │ │ │ ├── WorldRepository.java │ │ │ │ ├── WorldCounter.java │ │ │ │ ├── MyWorldRepository.java │ │ │ │ ├── App.java │ │ │ │ └── World.java │ │ └── resources │ │ │ ├── log4j.properties │ │ │ └── spring │ │ │ └── helloWorldContext.xml │ └── test │ │ └── java │ │ └── org │ │ └── springframework │ │ └── data │ │ └── neo4j │ │ └── examples │ │ └── hellograph │ │ ├── WorldCounterTest.java │ │ └── WorldTest.java ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.maven.ide.eclipse.prefs ├── build.gradle ├── .classpath ├── .project └── settings │ ├── ivy.xml │ ├── path.xml │ ├── ivysettings.xml │ └── install-ivy.xml └── readme.md /myrestaurants-original/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /myrestaurants-social/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /imdb/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | *.ipr 3 | *.iws 4 | *.iml 5 | 6 | -------------------------------------------------------------------------------- /myrestaurants-original/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /myrestaurants-social/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /imdb/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.ipr 3 | *.iws 4 | *.iml 5 | *.zip 6 | target 7 | *.log 8 | tmp 9 | 10 | -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/classes/alt.properties: -------------------------------------------------------------------------------- 1 | styleSheet=resources/styles/alt.css 2 | -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/classes/alt.properties: -------------------------------------------------------------------------------- 1 | styleSheet=resources/styles/alt.css 2 | -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/classes/standard.properties: -------------------------------------------------------------------------------- 1 | styleSheet=resources/styles/standard.css 2 | -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/classes/standard.properties: -------------------------------------------------------------------------------- 1 | styleSheet=resources/styles/standard.css 2 | -------------------------------------------------------------------------------- /myrestaurants-social/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /imdb/doc/images/IMDB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/doc/images/IMDB1.png -------------------------------------------------------------------------------- /myrestaurants-original/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /imdb/src/main/webapp/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/bg.png -------------------------------------------------------------------------------- /imdb/src/main/webapp/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/menu.png -------------------------------------------------------------------------------- /hello-worlds/.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | .ivy 3 | .gradle 4 | target 5 | *.ipr 6 | *.iml 7 | *.iws 8 | .classpath 9 | .project 10 | 11 | -------------------------------------------------------------------------------- /imdb/src/main/webapp/actor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/actor.png -------------------------------------------------------------------------------- /imdb/src/main/webapp/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/movie.png -------------------------------------------------------------------------------- /imdb/src/main/webapp/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/setup.png -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/web/SetupForm.java: -------------------------------------------------------------------------------- 1 | package org.neo4j.examples.imdb.web; 2 | 3 | public class SetupForm { 4 | } 5 | -------------------------------------------------------------------------------- /imdb/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /imdb/src/main/webapp/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/gradient.png -------------------------------------------------------------------------------- /imdb/src/main/resources/data/actors.list.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/resources/data/actors.list.gz -------------------------------------------------------------------------------- /imdb/src/main/resources/data/movies.list.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/resources/data/movies.list.gz -------------------------------------------------------------------------------- /imdb/src/main/resources/data/actresses.list.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/resources/data/actresses.list.gz -------------------------------------------------------------------------------- /imdb/src/test/resources/icons/IMDB.OUTGOING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/test/resources/icons/IMDB.OUTGOING.png -------------------------------------------------------------------------------- /imdb/src/test/resources/icons/ACTS_IN.INCOMING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/test/resources/icons/ACTS_IN.INCOMING.png -------------------------------------------------------------------------------- /imdb/src/test/resources/icons/ACTS_IN.OUTGOING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/test/resources/icons/ACTS_IN.OUTGOING.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/add.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/en.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/add.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/en.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/list.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/show.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/Thumbs.db -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/create.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/delete.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/list.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/show.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/update.png -------------------------------------------------------------------------------- /imdb/src/test/resources/icons/PART_OF_NAME.OUTGOING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/test/resources/icons/PART_OF_NAME.OUTGOING.png -------------------------------------------------------------------------------- /imdb/src/test/resources/icons/PART_OF_TITLE.OUTGOING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/test/resources/icons/PART_OF_TITLE.OUTGOING.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/create.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/delete.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/update.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/fav-del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/fav-del.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/fav-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/fav-new.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/favicon.ico -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/thumbsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/thumbsup.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/fav-del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/fav-del.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/fav-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/fav-new.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/favicon.ico -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/recommend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/recommend.gif -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/spring-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/spring-logo.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/spring-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/spring-logo.png -------------------------------------------------------------------------------- /myrestaurants-social/.settings/org.eclipse.wst.ws.service.policy.prefs: -------------------------------------------------------------------------------- 1 | #Wed Sep 29 14:35:52 EDT 2010 2 | eclipse.preferences.version=1 3 | org.eclipse.wst.ws.service.policy.projectEnabled=false 4 | -------------------------------------------------------------------------------- /imdb/src/main/webapp/jsp/include.jsp: -------------------------------------------------------------------------------- 1 | <%@ page session="false"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 3 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/banner-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/banner-graphic.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/resultset_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/resultset_last.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/resultset_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/resultset_next.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/banner-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/banner-graphic.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/resultset_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/resultset_first.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/resultset_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/resultset_last.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/resultset_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/resultset_next.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/resultset_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/resultset_first.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/resultset_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/resultset_previous.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/springsource-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/springsource-logo.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/resultset_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/resultset_previous.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/springsource-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/springsource-logo.png -------------------------------------------------------------------------------- /imdb/src/main/webapp/jsp/menu.jsp: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /myrestaurants-original/src/main/resources/META-INF/spring/database.properties: -------------------------------------------------------------------------------- 1 | database.driverClassName=org.hsqldb.jdbcDriver 2 | database.url=jdbc:hsqldb:hsql://localhost:9001 3 | database.username=sa 4 | database.password= 5 | -------------------------------------------------------------------------------- /myrestaurants-social/src/main/resources/META-INF/spring/database.properties: -------------------------------------------------------------------------------- 1 | database.driverClassName=org.hsqldb.jdbcDriver 2 | database.url=jdbc:hsqldb:hsql://localhost:9001 3 | database.username=sa 4 | database.password= 5 | -------------------------------------------------------------------------------- /hello-worlds/README.md: -------------------------------------------------------------------------------- 1 | Hello Worlds 2 | ============ 3 | 4 | A simple Spring Data Graph example with just enough code to 5 | do something that works. 6 | 7 | Build and Run 8 | ------------- 9 | 10 | `mvn clean package exec:java` 11 | -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/domain/RelTypes.java: -------------------------------------------------------------------------------- 1 | package org.neo4j.examples.imdb.domain; 2 | 3 | import org.neo4j.graphdb.RelationshipType; 4 | 5 | public enum RelTypes implements RelationshipType { 6 | ACTS_IN, IMDB 7 | } 8 | -------------------------------------------------------------------------------- /myrestaurants-original/src/main/resources/schema.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE restaurant ( 2 | id BIGINT IDENTITY PRIMARY KEY, 3 | name VARCHAR(255), 4 | version BIGINT, 5 | zip_code VARCHAR(255), 6 | city VARCHAR(255), 7 | state VARCHAR(255) 8 | ); -------------------------------------------------------------------------------- /myrestaurants-social/src/main/resources/schema.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE restaurant ( 2 | id BIGINT IDENTITY PRIMARY KEY, 3 | name VARCHAR(255), 4 | version BIGINT, 5 | zip_code VARCHAR(255), 6 | city VARCHAR(255), 7 | state VARCHAR(255) 8 | ); -------------------------------------------------------------------------------- /hello-worlds/src/main/java/org/springframework/data/neo4j/examples/hellograph/RelationshipTypes.java: -------------------------------------------------------------------------------- 1 | package org.springframework.data.neo4j.examples.hellograph; 2 | 3 | public abstract class RelationshipTypes 4 | { 5 | public static final String REACHABLE_BY_ROCKET = "REACHABLE_BY_ROCKET"; 6 | } 7 | -------------------------------------------------------------------------------- /hello-worlds/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 2 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 3 | 4 | # Print the date in ISO 8601 format 5 | log4j.appender.stdout.layout.ConversionPattern=%d [%t] %-5p %c - %m%n 6 | 7 | log4j.rootLogger=ERROR, stdout 8 | -------------------------------------------------------------------------------- /hello-worlds/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Wed Jan 05 13:47:14 EST 2011 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 4 | org.eclipse.jdt.core.compiler.compliance=1.6 5 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 6 | org.eclipse.jdt.core.compiler.source=1.6 7 | -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/domain/ActorRepository.java: -------------------------------------------------------------------------------- 1 | package org.neo4j.examples.imdb.domain; 2 | 3 | import org.springframework.data.graph.neo4j.repository.GraphRepository; 4 | 5 | /** 6 | * @author mh 7 | * @since 01.04.11 8 | */ 9 | public interface ActorRepository extends GraphRepository10 |