I’ve just released a new version of the jetty-rails gem. Now, you can also run Merb applications inside JRuby and Jetty!
jruby -S gem install jetty-rails
cd mymerbapp
jruby -S jetty_merb
Unfortunately, it’s blocking my console (ctrl + c doesn’t terminate it). Has anyone suggestions on this?
I’ve also updated the basic documentation, as you can see here.
The Merb support [...]
Read Full Post »
This is the first time I’m writing about it, but jetty-rails is already 0.3!
Most people doing JRuby on Rails development are using JMongrels1 for development and some real Java Application Server in production.
The common flow is:
$ jruby script/server
=> Booting Mongrel (use ’script/server webrick’ to force WEBrick)
=> Rails application starting on http://0.0.0.0:3000
=> Call with -d to [...]
Read Full Post »
Posted in java, jsp, servlet, web on March 11, 2008 | 6 Comments »
… you could automatically register any number of servlet event listeners (ServletContextListener, HttpSessionListener, ServletRequestListener, and more …) without any additional web.xml line?
The Java Server Pages 2.0 specification dictates that all .tld files inside META-INF directories, from jars in the web application classpath (WEB-INF/lib), must be read and parsed by the Servlet Container (JSP.7.1.9 - Event [...]
Read Full Post »