Hi, I created Spring Roo application by Spring Roo 1.1.0 as follows,
===
project --topLevelPackage com.tenminutes --projectName ten-minutes --java 6
persistence setup --database MYSQL --provider HIBERNATE
entity --class ~.Todo --testAutomatically
field string --fieldName message --notNull
controller all --package ~.web
===
And edited database.properties as follows,
===
database.password=sample
database.url=jdbc\:mysql\://localhost\:3306/sample
database.username=sample
database.driverClassName=com.mysql.jdbc.Driver
===
This application works fine on local tcServer + MySQL.
But when I launched this application in EC2 with Cloud Foundry plugin in STS2.5.1,
I got a NoClassDefFoundError. (see attached file)
Is anyone else seeing this issue?![]()


Reply With Quote