From a6f69a40d64968a8fb3507ee4a0a6db2ca56997e Mon Sep 17 00:00:00 2001 From: antelder Date: Wed, 18 Feb 2009 11:41:55 +0000 Subject: Start of a basic helloworld sample that demonstrates embedding a Tuscany runtime within a webapp git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@745479 13f79535-47bb-0310-9956-ffa450edef68 --- java/sca/samples/webapps/helloworld/pom.xml | 55 ++++++++++++++++++++++ .../src/main/java/sample/HelloworldService.java | 25 ++++++++++ .../main/java/sample/HelloworldServiceImpl.java | 38 +++++++++++++++ .../src/main/webapp/WEB-INF/web.composite | 29 ++++++++++++ .../helloworld/src/main/webapp/WEB-INF/web.xml | 37 +++++++++++++++ 5 files changed, 184 insertions(+) create mode 100644 java/sca/samples/webapps/helloworld/pom.xml create mode 100644 java/sca/samples/webapps/helloworld/src/main/java/sample/HelloworldService.java create mode 100644 java/sca/samples/webapps/helloworld/src/main/java/sample/HelloworldServiceImpl.java create mode 100644 java/sca/samples/webapps/helloworld/src/main/webapp/WEB-INF/web.composite create mode 100644 java/sca/samples/webapps/helloworld/src/main/webapp/WEB-INF/web.xml (limited to 'java/sca') diff --git a/java/sca/samples/webapps/helloworld/pom.xml b/java/sca/samples/webapps/helloworld/pom.xml new file mode 100644 index 0000000000..1f2fd4d1a4 --- /dev/null +++ b/java/sca/samples/webapps/helloworld/pom.xml @@ -0,0 +1,55 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-sca + 2.0-SNAPSHOT + ../../pom.xml + + + helloworld + Apache Tuscany SCA Helloworld Sample + war + + + + + org.apache.tuscany.sca + tuscany-sca-api + 2.0-SNAPSHOT + compile + + + + org.apache.tuscany.sca + tuscany-host-webapp + 2.0-SNAPSHOT + runtime + + + + + + ${artifactId} + + + diff --git a/java/sca/samples/webapps/helloworld/src/main/java/sample/HelloworldService.java b/java/sca/samples/webapps/helloworld/src/main/java/sample/HelloworldService.java new file mode 100644 index 0000000000..c8d803501d --- /dev/null +++ b/java/sca/samples/webapps/helloworld/src/main/java/sample/HelloworldService.java @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package sample; + +public interface HelloworldService { + + String sayHello(String name); + +} diff --git a/java/sca/samples/webapps/helloworld/src/main/java/sample/HelloworldServiceImpl.java b/java/sca/samples/webapps/helloworld/src/main/java/sample/HelloworldServiceImpl.java new file mode 100644 index 0000000000..2d5f7c76b7 --- /dev/null +++ b/java/sca/samples/webapps/helloworld/src/main/java/sample/HelloworldServiceImpl.java @@ -0,0 +1,38 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package sample; + +import org.oasisopen.sca.annotation.EagerInit; +import org.oasisopen.sca.annotation.Init; +import org.oasisopen.sca.annotation.Service; + +@EagerInit +@Service(HelloworldService.class) +public class HelloworldServiceImpl implements HelloworldService { + + public String sayHello(String name) { + return "Hello " + name; + } + + @Init + public void init() { + System.out.println(sayHello("world")); + } + +} diff --git a/java/sca/samples/webapps/helloworld/src/main/webapp/WEB-INF/web.composite b/java/sca/samples/webapps/helloworld/src/main/webapp/WEB-INF/web.composite new file mode 100644 index 0000000000..0e0446ec35 --- /dev/null +++ b/java/sca/samples/webapps/helloworld/src/main/webapp/WEB-INF/web.composite @@ -0,0 +1,29 @@ + + + + + + + + + diff --git a/java/sca/samples/webapps/helloworld/src/main/webapp/WEB-INF/web.xml b/java/sca/samples/webapps/helloworld/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000000..f13afbfb74 --- /dev/null +++ b/java/sca/samples/webapps/helloworld/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,37 @@ + + + + + Apache Tuscany Helloworld Sample + + + tuscany + org.apache.tuscany.sca.host.webapp.TuscanyServletFilter + + + + tuscany + /* + + + -- cgit v1.2.3