Xplanner+ was updated.
Mostly upgrades to new libraries, bug fixes and removing unneeded code.New build is available for download:
http://sourceforge.net/projects/xplanner-plus/files/v1.1a4/
<dependency>
<groupId>org.directwebremoting</groupId>
<artifactId>dwr</artifactId>
<version>2.0.3</version>
</dependency>
2. Add to web.xml Dwr Spring Servlet <servlet> <servlet-name>dwr-invoker</servlet-name> <servlet-class>org.directwebremoting.spring.DwrSpringServlet</servlet-class> <init-param> <param-name>debug</param-name> <param-value>true</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>dwr-invoker</servlet-name> <url-pattern>/dwr/*</url-pattern> </servlet-mapping>
<import resource="dwr.xml"/>
<?xml version="1.0" encoding="UTF-8" ?>
<beans default-autowire="no" xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dwr="http://www.directwebremoting.org/schema/spring-dwr"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.directwebremoting.org/schema/spring-dwr
http://www.directwebremoting.org/schema/spring-dwr-2.0.xsd">
<dwr:configuration>
<dwr:convert type="bean" class="net.sf.xplanner.domain.Project">
<dwr:exclude method="notificationReceivers"/>
<dwr:exclude method="iterations"/>
</dwr:convert>
</dwr:configuration>
<dwr:controller id="dwrController" debug="true" />
<bean id="dwrProject" class="net.sf.xplanner.dwr.Project" >
<property name="projectDao" ref="projectDao" />
<dwr:remote javascript="project">
<dwr:include method="getAllProjects" />
</dwr:remote>
</bean>
</beans>
<script type='text/javascript' src='/xplanner/dwr/interface/project.js'></script> <script type='text/javascript' src='/xplanner/dwr/engine.js'></script>
Here you can try xplanner+, without installing it on your system.
XplannerPlus is based on xplanner project.
More details about xplanner-plus you may read on http://xplanner-plus.