Search Results

1
vote
1answer
253 views

Using a jsp fmt tag in another tag

I'd like to be able to include the return value of a fmt tag in another tag: <local:roundedBox boxTitle="<fmt:message key="somekey"/>"> content </roundedBox> …
0
votes

Is there an easy way to attach source in Eclipse?

Another thought for making that easier when using an automated build: When you create a jar of one of your projects, also create a source files jar: project.jar project-src.jar …
2
votes

Find out what JVM Eclipse is running on

If you go to Help->'About Eclipse Platform' and click on the 'Configuration Details' button it will take a moment to display, but you get a dump of everything eclipse is configured for... …
0
votes

How a servlet can get the absolute path to a file outside of the servlet?

Is it possible to put the config file within the classpath and reference it via something like springs …
1
vote

How a servlet can get the absolute path to a file outside of the servlet?

I think ClassName.class.getResourceAsStream() will work for you. The …