Calling web scripts from Spring-based services

If you need to invoke an Alfresco web script from Spring-based services, then you need to use RestTemplate to invoke HTTP calls. This is the most commonly used technique to execute HTTP calls from Spring-based classes. In order to do this, the following are the steps to be performed. The code snippets are also provided:

  1. Define RestTemplate in your Spring context file:
    <bean id="restTemplate" class="org.springframework.web.client.RestTemplate" />
  2. In the Spring context file, inject restTemplate in your Spring class as shown in the following example:
    <bean id="httpCommService" class="com.test.HTTPCallService">
      <property name="restTemplate" value="restTemplate" />
    </bean>
  3. In the Java class, define the setter ...

Get Learning Alfresco Web Scripts now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.