Hi,
it seems like SpringIDE 2.0M2 doesn't work w/ WTP 2.0M4. Can someone confirm?
This is copied from the roadmap:
This release will work with Eclipse 3.3M4 and WTP 2.0 M4.
I'm using Eclipse 3.3M4 and WTP2.0M4 (and deps) and I get the following error:
Code:
Unexpected exception parsing XML document from file [.../applicationContext.xml]; nested exception is java.lang.LinkageError: loader constraint violation: when resolving method "org.springframework.ide.eclipse.core.io.xml.LineNumberPreservingDOMParser.setEntityResolver(Lorg/xml/sax/EntityResolver;)V" the class loader (...)
Code navigation and completion seem to work, but I cannot auto-complete (or navigate) when the beans are declared using XSD/namespaces.
For example having a bean like this:
Code:
<!-- Data Source -->
<jee:jndi-lookup id="dataSource" jndi-name="java:comp/env/jdbc/myDs" />
and trying to reference it here:
Code:
<bean id="entityManagerFactory" class="...">
<property name="dataSource" ref="dataSource"/>
...
Neither auto-completion the bean's name ("dataSource") nor navigating to it via Ctrl-Click is possible.
The Spring config file is marked with an error "x" icon in the package explorer.
Thank you,
Sebastian