Skip to content

adamw/devcrowd-aws-demo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Table of Contents

DevCrowd 2012 AWS sample application

Setup JBoss

Start JBoss AS 7.1+

Fix the slf4j module, by editing ${JBOSS_HOME}/modules/org/jboss/logging/main/module.xml and add those two to the dependencies:

    <module name="org.apache.log4j"/>
    <module name="org.slf4j"/>

This might be fixed by JBoss one day, but still for JBoss AS 7.1-Final does not work properly

Build & Deploy the war

Build the project with

 mvn clean install

And put target/devcrowd-aws-demo-1.0-SNAPSHOT.war in '${JBOSS_HOME}/standalone/deployments

Run the application

JMS & Hibernate version

Run the server with:

 ./standalone.sh -Dlocal --server-config=standalone-full.xml

Deploy JMS queue with the admin console:

 jms-queue add --queue-address=DevcrowdQueue --entries=queues/MessageQueue

This will use JPA/JMS services.

SQS & SDB version

Fill in aws.properties and sqs.conf in the resources folder (use .sample files)

Create an empty messages domain in SDB.

Run the server with

 ./standalone.sh

Access the application

Go to http://localhost:8080/devcrowd-aws-demo-1.0-SNAPSHOT/home/index

Load generator

To run the load generator, execute: mvn -Plg exec:exec

About

AWS demo for DevCrowd 2012

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 62.7%
  • Java 37.3%