-
In your template, use a region tag to bind a web script into the template.
For example:
<html> <body> <@region id='hotels' scope='page' /> </body> </html>
This declares a page-scoped region with the name "hotels". You can develop a Java-backed web script to retrieve the hotel list and place the result into the model. The Java code would look something like this:
public class HotelListingWebScript extends DeclarativeWebScript { privateTravelServicetravelService; public void setTravelService(TravelServicetravelService) { this.travelService = travelService; } @Override protected Map<String, Object>executeImpl(WebScriptRequestreq, Status status) { Map<String, Object> model = new HashMap<String, Object>(7, 1.0f); model.put("hotelList", travelService.findHotels()); return model; } }
-
Use Spring configuration to wire this into place by declaring the web script
descriptor and view template files.
For example:Web script descriptor (hotellisting.get.desc.xml):
<webscript> <shortname>Hotel Listing</shortname> <url>/hotel/listing</url> <format default="html">argument</format> <authentication>none</authentication> <transaction>required</transaction> </webscript>
View template (in FreeMarker) hotellisting.get.html.ftl:
<table> <#if hotelList?size == 0> <tr> <td colspan="2">No hotels</td> </tr> <#else> <#list hotelList as hotel> <tr> <td>${hotel.name}</td> <td>${hotel.address}</td> </tr> </#list> </#if> </table>
<?xml version='1.0' encoding='UTF-8'?> <component> <source-id>hotels</source-id> <scope>page</scope> <region-id>hotels</region-id> <url>/hotel/listing</url> </component>
This approach gives you a reusable web script that you can place into multiple locations in your website. It could appear on different pages, in different regions, and in different scopes. The advantage is that the controller is only hit when the web script is on the page. The disadvantage is that the Java-backed controller is not portable as the rest of the web script files. Moving it from one Surf application to another would require a server restart.