From d39a04f59e10dc6721f9a15a5581aa5785d380ac Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Thu, 17 Sep 2015 13:52:29 +0200 Subject: [PATCH] =?utf8?q?added=20install.txt=20Signed-off-by:Roland=20H?= =?utf8?q?=C3=A4der=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- INSTALL.txt | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 INSTALL.txt diff --git a/INSTALL.txt b/INSTALL.txt new file mode 100644 index 0000000..1348997 --- /dev/null +++ b/INSTALL.txt @@ -0,0 +1,37 @@ +Installation instructions: +========================== + +0) Create an empty database and setup proper permissions + +1) Import install/install.sql into your new database + +2) Setup a JDBC pool. I took the simple driver: + +Pool name: ShopPool +Resource type: java.sql.Driver +Driver: MySQL +Driver class: com.mysql.jdbc.Driver + +URL: jdbc:mysql://localhost/your_database +user: your_login +password: your_password + +3) Setup a JDBC resource: + +JNDI name: jdbc/shop +Pool name: ShopPool + +4) Setup a JMS connection factory: + +JNDI name: jms/shopConnectionFactory +Resource type: javax.jms.QueueConnectionFactory + +5) Setup a JMS destination resource: + +JNDI name: jms/shopCheckoutQueue +Physical destination name: checkout +Resource type: javax.jms.Queue + +You should be done now. + +Of course, you need to build and deploy the EAR/WAR files. ;-) -- 2.39.2