This post originated from an RSS feed registered with Ruby Buzz
by Chris Nelson.
Original Post: include Spring
Feed Title: MysteryCoder
Feed URL: http://mysterycoder.blogspot.com/feeds/posts/default
Feed Description: Ramblings of secret Ruby coder in Cincinnati, OH
I've gotten a little farther with my JRuby on Rails Spring integration code. I think I have what may make the beginning of a Spring plugin for JRuby on Rails. Here's the code for the Spring module. This is my first foray into metaprogramming in Ruby, I'd welcome any feedback.
# spring.rb # June 20, 2007 #
module Spring includeJava importjavax.servlet.ServletContext importorg.springframework.web.context.WebApplicationContext importorg.springframework.web.context.support.WebApplicationContextUtils
def spring_bean(bean) class_eval"def #{bean.to_s}; application_context.get_bean(\"#{bean.to_s}\"); end;" end
# dunno if there is a better way to do this. I need the spring_bean method # to become a class method on the includee, but application_context needs to be # a normal instance method def self.append_features(includee) includee.extend(Spring) includee.class_evaldo def application_context WebApplicationContextUtils.getWebApplicationContext($servlet_context) end end end end
This gives you a handy spring_bean method in any class where you've included Spring. The spring_bean method will then dynamically add an accessor to the class you use it in. This is what it looks like in a controller:
class TestSpringController<ApplicationController includeSpring spring_bean:descriptor1 def showcontext render_textdescriptor1.displayName end
end
Obviously to have this working you need several things. You need to have the goldspike plugin (from SVN trunk as per my earlier post). You also need to have Spring and its dependent jars in your WEB-INF/lib. I just copied em in for playing around purposes, with a little tweaking of my conf/war.rb file I could probably make goldspike fetch them. And lastly, it assumes you have an applicationContext.xml in WEB-INF, and that you have the Spring ContextLoaderListener declared in your web.xml.
Wow, that's a lot of trouble, why the heck would I want to do all that? What's this all for anyways? First of all, if you need this you probably don't need to ask, you know who you are. No, I'm not even trying to suggest using Spring for greenfield JRuby on Rails applications. But if you need to do heavy Java integration or you have an existing Spring application you want to front end in Rails, this kind of thing could end up being quite handy. This is my situation: I have a pretty large Spring/Hibernate/Tapestry app and I'd like to make moving to JRuby on Rails a viable option. Rather than replace everything whole hog, I'd like to be able to leverage working Spring services easily from Rails. As you can see, doing this should be a piece of cake.