Spring boot w/ Thymeleaf, jQuery & jQuery UI, and Bootstrap
A more typical/modern setup would be to replace JSP with one of the template engines and JS and styling libraries: Thymeleaf as the templating engine jQuery as the JavaScript library…
A more typical/modern setup would be to replace JSP with one of the template engines and JS and styling libraries: Thymeleaf as the templating engine jQuery as the JavaScript library…
Project Setup From the CLI or http://start.spring.io/, initialize a project with "web" capability. What ends up happening is addition of the dependency: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> Start with this directory…
Problem to solve A flow on the App server triggers an event that needs to be handled by several listeners that then need to each run for a couple of seconds…
See http://www.therealvan.com/pn/?p=186 for installing: Rails 3.0.3 & MySQL on Windows 7. After installing those, and once work begins, chances are an IDE w/ line-debugging capabilities are needed. Aptana Studio 3 seems to…
Prerequisites Git installed and on PATH Installation Sign up for a Heroku account. Note the user email address and password. Download and install the Heroku Toolbelt. (see https://devcenter.heroku.com/articles/quickstart) Even if…
The groovy.net.http.RESTClient class is a subclass of a more general groovyx.net.http.HttpBuilder class and comes with the "rest" plugin (http://grails.org/plugin/rest). GET A simple GET request with query parameters: def rest =…
More Rails stuff. I was using command line & vim to do some Rails stuff until fingers got tired of switching between files. So I did a some searches and…