Skip to content

gfrison/rewards

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rewards

This is a SOA (Service Oriented Architecture) example application.

The requirement's specifications are defined in the Scenario.

The project leverages on:

  • Groovy

  • Gradle

  • Springframework

  • Camel

  • CXF

Open a Linux console and go to the project home.

Type gradle test you will test it.

Type gradle run you will run it (with development setup). After that you may test the up and running application typing curl -v http://localhost:8080/rewards/account/234234 -X GET -d '{"portfolio":{"channels":["SPORTS"]}}'

Type gradle distZip you will obtain a complete deliverable zip file which contains an executable launcher

Configuration

Available on src/main/resources

RewardService: src/main/groovy/com/gfrison/services/RewardService.groovy

Gradle

Dependencies and build management is delegated to Gradle.

Install it from http://gradle.org not from apt-get install gradle. More recent version, more better

If you want to run it simply type: gradle run. Other tasks:

  • compile java -- gradle compileJava

  • compile groovy -- gradle compileGroovy

  • test -- gradle test

  • run -- gradle run

  • create launch script -- gradle installApp

  • create distribution (zip) -- gradle distZip it creates a zip file according to the build.gradle's projectName and version

Spring

The project makes use of Springframework through the Grails based DSL.

It's a very concise way to handle Spring configuration. For more information (http://www.grails.org/doc/latest/guide/spring.html#springdsl).

Eclipse

In order to get the project dependencies in Eclipse just prompt gradle eclipse

Environments

It's possibile to customize configuration for any given environment such as development, integration, production (or whatever you want define).

Add the folder src/main/resources/conf/{environment name}/.

Then set the proper environment's placeholer config.properties and log4j.xml.

When you run the application from start script you have to set the system variable ex:

export APP_OPTS="-Denvironment=<development/integration/production>"

About

SOA example for prototyping modular systems through Camel ESB

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages