wicket @SpringBean can not create bean

夙愿已清 提交于 2019-11-30 03:35:45

问题


I have a project on Eclipse, Wicket, Spring, Hibernate. Every thing works normaly except : when I try

public class SortableContactDataProvider extends SortableDataProvider<User>
{
    @SpringBean
    private Service service;

    public Iterator<User> iterator(int first, int count)
    {
        //SortParam sp = getSort();
        return service.findAllUsers().subList(0, 15).iterator();
    }
...

the service variable is null? In any another places when I use this constuction "service" is not null and working well. Please help me to solve this problem.


回答1:


@SpringBean works only in any Subclass of Component.

You need to do the following in your Constructor

Wicket 1.4

  InjectorHolder.getInjector().inject(this);

Wicket 1.5+

  org.apache.wicket.injection.Injector.get().inject(this);

See 'generic IDataProvider implementation' @ http://stronglytypedblog.blogspot.com/2009/03/wicket-patterns-and-pitfalls-1.html

Enjoy




回答2:


A bit more of context for those who are newbies to Wicket/Spring environment - as bert, pointed out, @SpringBean works only in any Subclass of Component so you'll need to drive the injection manually. This is a 2 step process:

Drive the injection in your class, something as:

public class SortableContactDataProvider extends SortableDataProvider<User>
{
    @SpringBean
    private Service service;

    public SortableContactDataProvider(){
        Injector.get().inject(this); // set up the injection
    }

    public Iterator<User> iterator(int first, int count)
    {
        return service.findAllUsers().subList(0, 15).iterator();
    }
}

And make sure the Injector is set up in Wicket application - something like:

public WicketApplication 

    @Override
    protected void init() {
        // make sure Spring injector is available and set up
        getComponentInstantiationListeners().add(new SpringComponentInjector(this));
    }
}


来源:https://stackoverflow.com/questions/3210496/wicket-springbean-can-not-create-bean

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!