Files
spring-integration/spring-integration-samples/loan-broker
Chris Beams 43310c9cab general pom cleanup
* normalizing version placeholders to use ${groupId}.version as a naming convention e.g.: 'org.springframework.version'
* added properties to parent pom <properties/> section
* spaces -> tabs
* removed empty newlines in poms (favor comments instead of newlines)
* gave all samples nice <name>s
* included ws-inbound-gateway in the samples parent pom <modules> section
* samples now try to run any **/*Tests.java, as per our general conventions
2010-05-19 09:41:37 +00:00
..
2010-05-19 09:41:37 +00:00

Loan Broker sample is distributed as valid Eclipse/Maven project, so you can run it in two ways.

Maven (command line):
1. Execute 'mvn install'
   You should see the output that looks similar to this:
    . . . . .
   	INFO : org.springframework.integration.loanbroker.demo.LoanBrokerDemo - 
	********* Best Quote: 
	====== Loan Quote =====
	Lender: StubBank-11
	Loan amount: $270,279
	Quotation Date: Fri Mar 12 02:19:35 EST 2010
	Expiration Date: Tue Mar 16 02:19:35 EDT 2010
	Term: 17 years
	Rate: 5.9092593%
	=======================
	. . . . .
	
Eclipse/STS (with m2eclipse plug-in)
1. Import project into Eclipse/STS. If m2eclipse plugin is installed the dependency will be downloaded automatically
2. Run 'org.springframework.integration.loanbroker.demo.LoanBrokerDemo' class located in 'src/test/java'