Category Archives: IT

Grails application with ws-client on AWS Elastic Beanstalk

If you happen to have a grails project to deploy on Amazon AWS Elastic Beanstalk, and your project depends on ws-client, you may experience a few issues, which I am documenting here. Please note that there is nothing new here, as the information is already available on the Internet, and I am reposting here for [...]

Programmer competency matrix

Found on IndianGeek and reposted here for convenience. If I broke some copyright, please let me know and I’ll remove the page. Note that the knowledge for each level is cumulative; being at level n implies that you also know everything from the levels lower than n.

Grails spring-security-core using dynamodb

Using Spring Security plugin for grails with Amazon DynamoDB plugin for Amazon DynamoDB is pretty straightforward, but there are two issues to be confronted with. The id into your User, Role and UserRole classes has to be explicitly set to String, since DynamoDB uses UUID as default primary key hash generator. Otherwise you can set [...]