Blog Archives

Making your Rails app work on Java

So you’ve written a Rails app and you want to show it off to your boss at work because you know that it will impress them. Problem is that your company only uses Java and won’t consider it for their production environment if it can’t be deployed under a JVM. Let’s go: Install JRuby http://jruby.org [...]

Getting Oracle XE to work with SpringFramework JDBC Template

Ever get this error when using Oracle XE with SpringFramework JDBC Template? SORA-12519, TNS:no appropriate service handler found You can get around it by executing the following commands: ALTER SYSTEM SET PROCESSES=150 SCOPE=SPFILE; ALTER SYSTEM SET SESSIONS=100 SCOPE=SPFILE; Then stop and start database (Oracle XE service) and you’re good to go! Remember: needs to be [...]