1 Installation instructions:
2 ==========================
4 0) Create an empty database and setup proper permissions
6 1) (Import install/install.sql into your new database) Currently DROP+CREATE
8 2) Setup a JDBC pool. I took the simple driver:
11 Resource type: java.sql.Driver
13 Driver class: com.mysql.jdbc.Driver
15 URL: jdbc:mysql://localhost/your_database
17 password: your_password
19 3) Setup a JDBC resource:
24 4) Setup a JMS connection factory:
26 JNDI name: jms/shopConnectionFactory
27 Resource type: javax.jms.QueueConnectionFactory
29 5) Setup a JMS destination resource:
31 JNDI name: jms/shopCheckoutQueue
32 Physical destination name: checkout
33 Resource type: javax.jms.Queue
35 You should be done now. And always try to give informative descriptions, not
36 just only "shop" or "factory".
38 Of course, you need to build and deploy the EAR/WAR files. ;-)