Posted on June 4, 2017 Leave a Comment
Sometime a jar is not available via Maven Central Repository and you need to load a jar from your local filesystem. Copy the jar file to a lib directory in your project. Execute the following command via command line Add the following to maven pom.xml
Posted on September 22, 2015 1 Comment
1. Setup Application 2. Setup Scheduler 3. Add Spring Boot dependency 4. Add Procfile 5. Scale Heroku worker 1. Setup Application 2. Setup Scheduler 3. Add Spring Boot dependency 4. Add Procfile 5. Scale Heroku worker
Posted on August 26, 2014 Leave a Comment
http://cloudsole-metrics.herokuapp.com https://github.com/thysmichels/cloudsole-metrics 1. Basic WebAppInitializer 2. WebConfiguration with EnableScheduling 3. WebSocketConfiguration with EnableWebSocketMessageBroker 4. Random Number Generator with ApplicationListener 5. Sock.js Javascript 1. Basic WebAppInitializer 2. WebConfiguration with EnableScheduling 3. WebSocketConfiguration with EnableWebSocketMessageBroker 4. Random Number Generator with ApplicationListener 5. Sock.js Javascript
Posted on May 30, 2014 1 Comment
ApplicationContext.xml defines herokuServiceConfig and herokuServiceProvider Bean Spring MVC Heroku OAuth Controller HerokuOauthApi extends DefaultApi20
Posted on April 24, 2014 2 Comments
Add New Relic Agent Dependency pom.xml build tag Create newrelic.yml and save to project route (same level as pom.xml) Add the following flag to your JAVA_OPTS config var on Heroku:
Posted on January 15, 2014 Leave a Comment
Add memcachedcloud to your project: heroku addons:add memcachedcloud 1. Setup Memcached Configuration 2. Setup Memcached Service 1. Setup Memcached Configuration 2. Setup Memcached Service
Posted on October 12, 2013 1 Comment
There are two ways to use Quartz on Heroku: 1. Setup your own Quartz on Heroku 2. Use Heroku Quartz Addon 1. Setup your own Quartz on Heroku Create Postgres db: heroku addons:add heroku-postgresql:dev Get Postgres properties: heroku config Use these properties to specify your: org.quartz.dataSource.dataSource.URL org.quartz.dataSource.dataSource.user org.quartz.dataSource.dataSource.password Your quartz.properties file Create your Quartz tables […]