Skip to content

Instantly share code, notes, and snippets.

@gnab
Created August 10, 2011 07:13
Show Gist options
  • Save gnab/1136290 to your computer and use it in GitHub Desktop.
Save gnab/1136290 to your computer and use it in GitHub Desktop.
JavaServletStore::AbstractStore Rails 3 Fix
# Needed for JRuby-Rack to locate ActionController::Session::JavaServletStore::AbstractStore on Rails 3.0.9
require 'action_dispatch/session/java_servlet_store' if defined?($servlet_context)
MyApp::Application.config.session_store(:active_record_store, :key => '_my_app_session')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment