2015-11-06 45 views
7

Napisałem kod, w którym pochłaniam kolejną usługę internetową i wysyłam żądanie do tej usługi za pomocą WebServiceTemplate. Ale otrzymuję następujący wyjątek, gdy ten kod trgiggers. Sprawdziłem lib's Spring Core & wszystko wydaje się ok, ale nie wiem dlaczego ta usługa rzuca taki wyjątek.Nie można załadować "źródła ścieżek klas [org/springframework/ws/client/core/WebServiceTemplate.properties]

ApplicationContxt:

<bean id="messageFactory" class="org.springframework.ws.soap.saaj.SaajSoapMessageFactory"> 
    <property name="soapVersion"> 
     <util:constant static-field="org.springframework.ws.soap.SoapVersion.SOAP_12" /> 
    </property> 
</bean> 

<bean id="manageContactService" class="com.canaldigital.tsi.managecontacts.serviceprovider.ManageContactService"> 
    <property name="manageContactsWSTemplate" ref="manageContactsWSTemplate" /> 
</bean> 

    <bean name="manageContactsWSTemplate" class="org.springframework.ws.client.core.WebServiceTemplate"> 
    <constructor-arg ref="messageFactory" /> 

    <property name="defaultUri" value="http://tsi-vip-abc.com:7111/abc_v2/ProxyService?WSDL" /> 

    <property name="marshaller" ref="manageContactMarshaller" /> 
    <property name="unmarshaller" ref="manageContactUnmarshaller" /> 

</bean> 

Usługa:

public class ManageContactService extends WebServiceGatewaySupport { 

     private WebServiceTemplate manageContactsWSTemplate;   
     public WebServiceTemplate getManageContactsWSTemplate() { 
    return manageContactsWSTemplate; 
} 
public void setManageContactsWSTemplate(WebServiceTemplate manageContactsWSTemplate) { 
    this.manageContactsWSTemplate = manageContactsWSTemplate; 
} 
    public void sendNPSReminder(String phoneNum, String customerNum, String countryCode) { 


      SendNPSReminderRequestType sendNPSReminderRequest = new SendNPSReminderRequestType(); 
      Contact contact = new Contact();    
      sendNPSReminderRequest.setCountryCode(CountryCodeCV.NO); 
      contact.setPhone(new BigInteger(phoneNum));    
      sendNPSReminderRequest.setContact(contact); 
      sendNPSReminderRequest.setCustomerNumber(customerNum); 

      try{ 

       JAXBElement<SendNPSReminderResponseType> response = (JAXBElement<SendNPSReminderResponseType>) manageContactsWSTemplate.marshalSendAndReceive(sendNPSReminderRequest); 
      }catch (Exception e) { 

       e.printStackTrace(); 
      } 

    } 

    } 

StackTrace:

java.lang.IllegalStateException: Could not load 'class path resource [org/springframework/ws/client/core/WebServiceTemplate.properties]': class path resource [org/springframework/ws/client/ 
ore/WebServiceTemplate.properties] cannot be opened because it does not exist 
     at org.springframework.ws.support.DefaultStrategiesHelper.<init>(DefaultStrategiesHelper.java:78) 
     at org.springframework.ws.support.DefaultStrategiesHelper.<init>(DefaultStrategiesHelper.java:88) 
     at org.springframework.ws.client.core.WebServiceTemplate.initDefaultStrategies(WebServiceTemplate.java:338) 
     at org.springframework.ws.client.core.WebServiceTemplate.<init>(WebServiceTemplate.java:130) 
     at org.springframework.ws.client.core.support.WebServiceGatewaySupport.<init>(WebServiceGatewaySupport.java:65) 
     at com.canaldigital.tsi.managecontacts.serviceprovider.ManageContactService.<init>(ManageContactService.java:24) 
     at com.canaldigital.tsi.managecontacts.utils.CDCommonTasksJob.launch(CDCommonTasksJob.java:97) 
     at sun.reflect.GeneratedMethodAccessor2044.invoke(Unknown Source) 
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) 
     at java.lang.reflect.Method.invoke(Method.java:597) 
     at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:64) 
     at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:53) 
     at org.springframework.scheduling.concurrent.ReschedulingRunnable.run(ReschedulingRunnable.java:82) 
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:440) 
     at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:206) 
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918) 
     at java.lang.Thread.run(Thread.java:662) 
+0

Czy dwukrotnie sprawdziłeś pisownię w swojej deklaracji fasoli? Nie jestem pewien, czy złamałoby to całą deklarację, ale możesz mieć błąd w pisowni w "unmarshaller" nieruchomości (w porównaniu do 'marshaller'). – Gorbles

+0

Nie mogłem znaleźć inicjału błędu pisowni. Czy możesz wyraźnie wspomnieć o tym błędzie? – user3548196

+0

\t user3548196

Odpowiedz

4

Ten zasób jest częścią spring-ws-core uzależnienia, więc musi działać po wyjęciu z pudełka, ale domyślam się, że używasz WLS 11 (jak to oznaczyłeś). Możliwe, że nie korzystasz z zależności sprężynowych, ale zamiast tego jesteś wiosną zapakowany w WebLogic.

starają się uniknąć tego, używając WEB-INF/weblogic.xml deskryptor następująco:

<?xml version="1.0" encoding="UTF-8"?> 
<weblogic-web-app xmlns="http://xmlns.oracle.com/weblogic/weblogic-web-app"> 

    <container-descriptor> 
     <prefer-application-packages> 
      <package-name>org.springframework.*</package-name> 
     </prefer-application-packages> 

     <prefer-application-resources> 
      <resource-name>org.springframework.*</resource-name> 
     </prefer-application-resources> 
    </container-descriptor> 

</weblogic-web-app> 

Przy tej konfiguracji mówisz WLS korzystać z pakietów i zasobów dla org.springframework.*.

Mam nadzieję, że pomoże!

+0

To mój weblogic.xml teraz: : WebLogic-web-app \t xmlns: WLS = "http: // xmlns.oracle.com/weblogic/weblogic-web-app "> \t \t \t true \t Otrzymuję błąd, że ta właściwość nie może być prawdziwa. – user3548196

+0

@ user3548196 nie można używać "prefer-web-inf-classes" w połączeniu z 'prefer-application-packages' i/lub' prefer-application-resources'. zobacz: https://docs.oracle.com/cd/E24329_01/web.1211/e21049/weblogic_xml.htm#WBAPP659 – malaguna