wicket « Integration « Spring Q&A





1. Wicket and Spring Integration    stackoverflow.com

I have a wicket contact form, and i receive the form object. Now i need to pass this object to Spring Service.

package com.mysticcoders.mysticpaste.web.pages;

import org.apache.wicket.markup.html.WebPage;
import org.apache.wicket.markup.html.form.Form;
import org.apache.wicket.markup.html.form.TextField;
import org.apache.wicket.markup.html.panel.FeedbackPanel;
import com.mysticcoders.mysticpaste.model.Contact;
import org.apache.wicket.model.CompoundPropertyModel;

import com.mysticcoders.mysticpaste.services.IContact;


public ...

2. My take on Spring/Wicket integration    forum.springsource.org

My take on Spring/Wicket integration I've been reading the Spring/Wicket integration threads on the mailing lists and looked at the code that is available but I was not entirily happy with ...

3. Spring + Wicket framework integration aka. AbstractBeanConfigurerAspect issues    forum.springsource.org

Spring + Wicket framework integration aka. AbstractBeanConfigurerAspect issues I am evaluating the possibilities to inject spring services into Wicket (http://wicket.sf.net) components. I have a problem though: The AbstractBeanConfigurerAspect states: Code: /** ...