Grails 2 DataAccessResourceFailureException Solved

Posted: February 15th, 2010 | Author: Bolo | Filed under: Software Development | Tags: , , , | No Comments »

For those using MYSQL and have either updated to grails version 2 or starting with grails 2 and have run into this exception then this solution works perfectly well for me.

The problem is releated to Grails running out of connections to MySQL over time, & not freeing stale connections.  I believe it happens when there hasn’t been activity for over 8 hours, which in my case happened everyday due to the overnight period.

So what we should be doing is managing our own database connection pool.   I use Tomcat 6 on my production servers so the following solution is specifically for tomcat 6.

What we need to do is first change our application configuration so it sets up a database connection pool through tomcat.  And secondly we need to tweak the configuration so that we validate the connection is present periodically and removed stale connections.

The first thing then is to define the connection pool in <your application dir>/web-app/META-INF/context.xml

A typical context.xml would be :

<?xml version="1.0" encoding="UTF-8"?>
<Context path="/MyApplication">
<Resource
 auth="Container"
 driverClassName="com.mysql.jdbc.Driver"
 maxActive="20"
 maxIdle="10"
 maxWait="-1"
 removeAbandoned="true"
 name="jdbc/myAppsPool"
 type="javax.sql.DataSource"
 url="jdbc:mysql://localhost:3306/Database_Name"
 username="user"
 password="password"
 validationQuery="SELECT '1'"
 removeAbandonedTimeout="60"
 logAbandoned="true"/>
</Context>[xml]

This alone will create the necessary database connection pool when you application is deployed.

All thats left to do now is to change your datasource configuration to refer to the connection pool so in your DataSource.groovy file, locate the production section and alter it to refer to the new pool, e.g :

production {
dataSource {
pooled = false
dbCreate = "update"
jndiName = "java:comp/env/jdbc/myAppsPool"
}
}

That should solve any of those DataAccessResourceFailureExceptions from now on.[


RegEx validation of Latitude and Longitude

Posted: October 23rd, 2009 | Author: Bolo | Filed under: Software Development | Tags: | No Comments »

Below are regex patterns to match against valid latitude and longitude.

Both formats are based on Decimal coordinates.

Latitude range is from -90 to +90

Longitude from -180 to +180

For Latitude the regex pattern is

(-?[0-8]?[0-9](\.\d*)?)|-?90(\.[0]*)?

For Longitude use

(-?([1]?[0-7][1-9]|[1-9]?[0-9])?(\.\d*)?)|-?180(\.[0]*)?

This will also restrict the decimal values being > 0 for both +- 90′ and +- 180


Docbook -> WebHelp

Posted: July 9th, 2008 | Author: Bolo | Filed under: Software Development | No Comments »

Steps to get from docbook to fully interactive webhelp..

1. Generate HTMLHELP via Oxygen.

2. (can compile to CHM) or carryon and import HTMLHelp project (hhp) file into Robohelp.