JHades: Tool for troubleshooting Java classpath problems

JHades logo & tagline

http://jhades.org/


jHades is a tool that helps troubleshooting classpath problems, see the blog post Demystifying Jar Hell for the main classpath concepts and pitfalls.

  • Duplicate classes detection: a command line tool list duplicate classes in a WAR, and allows filtering ‘harmless’ duplicates
  • Runtime classpath debugging: a utility class exists to query the classpath at runtime for details on the class loader chain, jars, hidden class files, etc.
  • Server startup troubleshooting: jHades works works well in scenarios where the server does not even start

gitignore.io: Create a .gitignore file based on OS, IDE, and Programming Language

gitignore.io masthead

http://www.gitignore.io/


I typed in Windows, Netbeans, & Java and this is what came back:

# Created by http://www.gitignore.io

### Windows ###
# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp

# Windows shortcuts
*.lnk


### NetBeans ###
nbproject/private/
build/
nbbuild/
dist/
nbdist/
nbactions.xml
nb-configuration.xml


### Java ###
*.class

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.ear

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*