summaryrefslogtreecommitdiffstats
path: root/sandbox/tutorial-store-www-services/catalog-amazon/cart-amazon/src/main/java/shoppingstore/server/ShoppingStoreServer.java
blob: 486946b2fc20ed440020bb29df199c0120293f1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package shoppingstore.server;

import java.io.IOException;

import org.apache.tuscany.sca.host.embedded.SCADomain;

public class ShoppingStoreServer {

	public static void main(String[] args) {

		SCADomain scaDomain = SCADomain.newInstance("shoppingstore.composite");

		try {
			System.out.println("ToyApp server started (press enter to shutdown)");
			System.in.read();
		} catch (IOException e) {
			e.printStackTrace();
		}

		scaDomain.close();
		System.out.println("ToyApp server stopped");
	}
	
	
}