Java Tools Section Index
What Is Spring Roo?
Spring Roo is a Java RAD tool for developing applications based on the Spring framework.
What is Apache TomEE?
Apache TomEE combines the Apache Tomcat application server with Java EE technologies.
How do you turn off the use of CommandLineWrapper so that IntelliJ will include all your JAR files on the command line?
To do so, open the .iws file for the project and look for the line setting the dynamic.classpath property to true:
<property name="dynamic.classpath" value="true"/>
With the project clo...more
How can I get log4j to write out to multiple logs?
How can I get log4j to write out to multiple logs?
How do I use third party/external java libraries in my NetBeans plug-in module?
In order to use an external library in NetBeans plug-in modules you need to create a "Library Wrapper Module" project which will (when added to a module suite) exist on the module project's classp...more
How can I add third party libraries to NetBeans for use within my applications/projects?
How can I add third party libraries to NetBeans for use within my applications/projects?
Where do Samsung mobile developers get tools for Java ME development?
The home for the Samsung Developers Club is http://developer.samsungmobile.com/. From there you can get documentation, SDKs, and related tools.more
I have expresion and it does not work Can somebody sugest how to write corectlly?
bean:message inside Struts tag
I have expresion and it does not work
Can somebody sugest how to write corectlly?
<pran:hello name="<bean:message key="menu.home"/>" />
Thanks a lotmore
How can I index Powerpoint documents?
In order to index Powerpoint documents you need to first parse them to extract text that you want to index from them. You can use the Jakarta Apache POI, as it contains a parser for Powerpoint do...more
Where does the name Lucene come from?
Lucene is Doug Cutting's wife's middle name, and her maternal grandmother's first name.
How to set up Basic HTTP Authorization in Tomcat 4
There are two required steps to activate Basic HTTP authentication in Tomcat.
The first one is Tomcat specific task. You need to define the type of Realm you wanna use. You can choose different ty...more
What is the difference between IndexWriter.addIndexes(IndexReader[]) and IndexWriter.addIndexes(Directory[]), besides them taking different arguments?
What is the difference between IndexWriter.addIndexes(IndexReader[]) and
IndexWriter.addIndexes(Directory[]), besides them taking different arguments?
How to make ANT keep source line numbers When I build with ANT 1.3, exceptions show source code line numbers.
How to make ANT keep source line numbers
When I build with ANT 1.3, exceptions show source code line numbers. For example:
java.lang.Exception: com.ge.med.gemsit.rs.dise.app_server_not_available
...more
Cross Site Scripting (XSS) with Jakarta Tomcat.
Hi,
The XSS vulnerability has been found at the time Tomcat 4.0.3 has been released (and 4.1.2 was in beta). The problem was connected to the fact that it was possible to run some specific classes...more
Is it possible, with Tomcat, to allow ONLY secure connections (HTTPS) for a Context or a Directory?
For allowing only HTTPS (secure) connections, you need to activate Tomcat's the SSL support. If you need help on this, just refer to the Tomcat SSL Configuration HOW-TO documentation pages.
Then, ...more