Hello Michael,
I'd like to start using neo4j and I would love to do it through spring-data. I'm still finding some issues when trying to run cineast-rest that are making my life a little harder though :( Let me share some issues/fix/issues when I type mvn jetty:run
- Context Initialization Failed .. BeanDefinitioParsingException .. you cannot use a spring-security-2.0 (or 3.0) schema with spring-security-3.1 ... offending resource WEB-INF/application-context-security.xml. FIX: I fixed this by upgrading the xsi:schemaLocation to http://www.springframework.org/schema/security/spring-security-3.1.xsd
- In dispatcherServlet-servlet.xml, IntelliJ does not like the following: xmlns:p="http://www.springframework.org/schema/p" and this might be responsible for other exception when I try to launch the app. FIX: manually set 'prefix' and 'suffix' to the <bean id="viewResolver"> and remove xmlns:p
- IntelliJ finds errors in web.xml as well, something weird like: "web-app-filter-name-uniqueness matched element web-app but this element does not have a simple type." FIX: Get rid of http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd in xsi:schemaLocation
I hope that addressed the issues above the right way and that others can benefit from it.
I'm still not able to run cineast-rest because of many errors like BeanCreationException (EG bean with name graphDatabaseService) , NoClassDefFoundError (EG com/sun/jersey/api/client/filter/ClientFilter). Are there any plans of updating the examples so that they run out of the box (simple cineast has issues as well)?
Thanks!
--
Hello Michael,
I'd like to start using neo4j and I would love to do it through spring-data. I'm still finding some issues when trying to run cineast-rest that are making my life a little harder though :( Let me share some issues/fix/issues when I type mvn jetty:run
- Context Initialization Failed .. BeanDefinitioParsingException .. you cannot use a spring-security-2.0 (or 3.0) schema with spring-security-3.1 ... offending resource WEB-INF/application-context-security.xml. FIX: I fixed this by upgrading the xsi:schemaLocation to http://www.springframework.org/schema/security/spring-security-3.1.xsd
- In dispatcherServlet-servlet.xml, IntelliJ does not like the following: xmlns:p="http://www.springframework.org/schema/p" and this might be responsible for other exception when I try to launch the app. FIX: manually set 'prefix' and 'suffix' to the <bean id="viewResolver"> and remove xmlns:p
- IntelliJ finds errors in web.xml as well, something weird like: "web-app-filter-name-uniqueness matched element web-app but this element does not have a simple type." FIX: Get rid of http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd in xsi:schemaLocation
I hope that addressed the issues above the right way and that others can benefit from it.
I'm still not able to run cineast-rest because of many errors like BeanCreationException (EG bean with name graphDatabaseService) , NoClassDefFoundError (EG com/sun/jersey/api/client/filter/ClientFilter). Are there any plans of updating the examples so that they run out of the box (simple cineast has issues as well)?
Thanks!
On Saturday, May 19, 2012 2:29:28 PM UTC-4, Michael Hunger wrote:
--