Tagged Questions

1
vote
2answers
140 views
+100

Tomcat restart, no all apps start

Hello, I've an interesting problem about start/restart of tomcat 5.5 I've deployed n webapps on my tomcat. All webapps work correctly. Every time when I restart tomcat, never happen that all …
1
vote
2answers
72 views
+100

Can I write to the Beanshell console from Java?

I'm using Beanshell as an embedded debugging tool in my app. It means I can telnet to my app and poke around with its internals while it is running (I typically wrap the telnet session with rlwrap). …
0
votes
1answer
95 views
+100

Dependency Injection: Jetty 7

Hi StackOverflow! My application requires several interface implementations which require a Jetty server to do their job. This is, however, not necessarily the case in every implementations of those …
3
votes
1answer
53 views
+100

SVN Externals in a different SCM

At a previous workplace we used svn externals to update dependent projects when a shared component was updated. This made it easy to see anything that those changes broke, as well as update dependent …
1
vote
2answers
77 views
+250

Running multiple sites from the same rails codebase?

I have a client that wants to take their Rails app that has been successful in one niche and apply it to another similar niche. This new instance of the app is going to start out very similar: all the …
0
votes
3answers
272 views
+300

Render PDF on a Blackberry?

We are using Blackberries to display PDF reports. Here are background details on the problem: The PDF reports are created using JasperReports. Report format can be changed. Different report formats …
5
votes
2answers
114 views
+100

Closures in Java - syntax differences between the three major proposals?

Three major proposals for adding closures to the Java language has been presented: BGGA (Bracha Gafter Gosling Ahé) also known as "full closures", by Gilad Bracha, Neal Gafter, James Gosling and …
0
votes
1answer
50 views
+250

Enable pdf caching in IE

At first, caching didn't work in all browsers. Then I made it work in all browsers but IE (IE8) by adding .pdf extension to the url. Servlet stopped being called after that. I display pdf file inline …
1
vote
1answer
54 views
+100

Hot Deploy of development changes with Eclipse, Tomcat, and Jetspeed

Hi, I am developing a Jetspeed portal application running on Tomcat, using the Eclipse IDE with the Sysdeo Tomcat launcher plugin to enable debugging of the application running in Tomcat/Jetspeed. I …
2
votes
1answer
102 views
+550

Unit testing icefaces

Can you separate components of an IceFaces application so they can be tested in isolation instead of using something like Selenium or HttpUnit on the assembled application? Backing beans can be …
1
vote
3answers
48 views
+100

Web-App : Keeping trace of the version of the application in database ?

Hi, We are building a webapp which is shipped to several client as a debian package. Each client runs his own server. But the update and support is done by us. We make regular releases of the …
0
votes
6answers
87 views
+150

SVN partial branch

I'm new to SVN so this could be an easy question. We have a "trunk" with 1st level directories: 10 <-- documents 20 <-- source code, db scripts, ... 30 <-- documents 40 <-- referenced …
3
votes
1answer
65 views
+100

Gracefully finalizing the SoftReference referent

I am using a search library which advises keeping search handle object open for this can benefit query cache. Over the time I have observed that the cache tends to get bloated (few hundred megs and …
5
votes
1answer
146 views
+550

Does hibernate work well with ehcache’s BlockingCache?

Hello I have a high traffic website and I use hibernate. I also use ehcache to cache some entities and queries which are required to generate the pages. The problem (and my question) is that when a …