我必須從Spring 2.5遷移到3.0。 我的web服務仍然使用Spring 2.5運行在Axis 1.4, 上我很簡單,每個服務實現類都擴展了ServletEndpointSupport。在Spring 3.0中,ServletEndpointSupport已棄用。在現有的Axis 1.4 Web服務中從Spring 2.5遷移到3
例如:
public class PersonBindingImpl extends ServletEndpointSupport implements PersonPortType {
public PersonDaten PersonQueryRequest(XPAPersonRequest request) throws RemoteException, XPAException {
PersonsImpl persons = getWebApplicationContext().getBean("personImpl", PersonsImpl.class);
return persons.getAllByGroup(request.getGroup());
}
}
有沒有辦法讓在Spring 3 ApplicationContext中以這樣一種簡單的方式在Spring 2.5。