1
vote
5answers
215 views
What is the best way to deal with environment specific configuration in java?
I have an application running in tomcat that has a bunch of configuration files that are different for each environment it runs in (dev, testing, and production). But not every line in a config fil …
2
votes
2answers
355 views
Is there a way to set timeouts in tomcat?
Can I set timeouts for JSP pages in tomcat either on a per page or server level?
…
6
votes
5answers
2k views
In Java when does a URL connection close?
When does java let go of a connections to a URL? I don't see a close() method on either URL or URLConnection so does it free up the connection as soon as the request finishes? I'm mainly asking to …
5
votes
3answers
245 views
Best way to modularize a block of JSP code
I have a block of JSP code that needs to be used in several places (basically a widget that several pages use). What's a good way to modularize this? I'd rather not put it in an object since string …
0
votes
4answers
566 views
Is it possible to get calling page name inside a jsp 2.0 custom tag?
I'm writing a custom JSP tag using the JSP 2 tag files. Inside my tag I would like to know which page called the tag in order to construct URLs. Is this possible with out passing it through an attr …
2
votes
4answers
1k views
How do I include jars in a groovy script?
I have a groovy script that needs a library in a jar. How do I add that to the classpath? I want the script to be executable so I'm using #!/usr/bin/env groovy at the top of my script. …
1
vote
4answers
175 views
Wait until tomcat finishes starting up
I have a script that needs to run after tomcat has finished starting up and is ready to start deploying applications. I'm using $TOMCAT_HOME/bin/startup.sh which returns immediately. H …
2
votes
3answers
490 views
How do I redirect output to stderr in groovy?
I'm looking for a way to redirect output in a groovy script to stderr:
catch(Exception e) {
println "Want this to go to stderr"
}
…
1
vote
4answers
498 views
Difference between Set and Collection in hibernate
What is the difference between using a Set or a Collection for @OneToMany or @ManyToMany properties on my hibernate entity objects?
Does Hibernate map things differently depending on which …
0
votes
3answers
151 views
Split java strings in Rhino
I'm trying to split a java string in a Rhino javascript program
var s = new java.lang.String("1 2 3");
s.split();
which give me the error
js: Can't find …
0
votes
Is it possible to get calling page name inside a jsp 2.0 custom tag?
Turns out that the request object actually is available, but only in the EL portion of a tag. So this would work:
<form action="${pageContext.request.requestURI}">
…
0
votes
