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
I need a open source JavaScript debugger to work with the NetBeans IDE
I need a open source JavaScript debugger to work with the NetBeans IDE
I am facing many problems while writing Javascript. Because there is no way to debug my code right now. SO, I am looking for J...more
How do I disable GZIP compress with the pack200 tool?
Use the --no-gzip option:
pack200 --no-gzip file.jar.pack file.jar
What are the pack200 and unpack200 command-line tools for?
The jar command-line tool packages files using ZIP compression. On the other hand, pack200 and unpack200 use GZIP compression format.
When were the pack200 and unpack200 commands introduced to the JDK?
You'll first find them a part of the 1.5 Java SE release.
Where do I get the latest Java 7 early access release?
Java SE 7 is available as part of java.net: https://jdk7.dev.java.net/.
Where do I submit bugs found in the Java platform?
You can request a feature or report a bug at http://bugs.sun.com/services/bugreport/index.jsp.
How do I get IntelliJ to generate serialVersionUID for me?
You can add an inspection warning that will then offer a prompt to generate. You can find the option several layers deep under Settings.
Settings -> Errors -> Serialization issues -> Ser...more
What license governs Eclipse?
Most of the project is governed by the Common Public License (CPL), described at http://www.opensource.org/licenses/cpl.php. The Eclipse Public License (EPL) will most likely replace the CPL once...more
Does NetBeans only support the Java language? Can I code in other languages in NetBeans?
Does NetBeans only support the Java language? Can I code in other languages in NetBeans?
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 register new servers in NetBeans?
How can I register new servers in NetBeans?