Hi,

I've been using Spring and Wicket together with no problems. My web.xml part
looks something like this:

        <filter>
                <filter-name>wicketFilter</filter-name>
                <filter-class>
                        org.apache.wicket.protocol.http.WicketFilter
                </filter-class>
                <init-param>
                        <param-name>applicationFactoryClassName</param-name>
                        <param-value>
                                
org.apache.wicket.spring.SpringWebApplicationFactory
                        </param-value>
                </init-param>
                <init-param>
                        <param-name>beanName</param-name>
                        <param-value>wicketApplication</param-value>
                </init-param>
        </filter>

I see that you are using the servlet rather than a filter, but that should
not pose any problems, but the filter is the preferred way in Wicket 1.3.

regards,
Guðmundur Bjarni
-- 
View this message in context: 
http://www.nabble.com/Maven-multi-module-app-using-wicket-spring-hibernate-tp16537252p16537448.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to