summaryrefslogtreecommitdiffstats
path: root/sandbox/ant/sca/branches/2.0-M2/archetypes/quickstart/src/main/resources/archetype-resources/src/main/webapp/hello.jsp
blob: 7195c302d7d0e5746e913f67b0a3247476c72408 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="http://www.osoa.org/sca/sca_jsp.tld" prefix="sca" %>

<sca:reference name="service" type="${package}.HelloworldService" />

<html>
  <body >

    <h2>${artifactId}</h2>

    Calling HelloworldService sayHello("world") returns:

    <p>

    <%= service.sayHello("world") %>

  </body>
</html>