Search Results

1
vote

Which heap size do you prefer ?

You need to spend quite some time in JConsole or visualvm to get a clear picture on what the plateau memory usage is. Wait until everything is stable and you see the characteristic sawtooth curve …
0
votes

How do I send an email attachment using the designated client, programmatically from Java

If you're using JDK 6 (you really should), the Desktop API is now part of the JRE. See ht …
0
votes

Java operator overload

Related question: What is your favourite overloading of the . operator? …
0
votes

Java logger that automatically determines caller’s class name

Unless you really need your Logger to be static, you could use final Logger logger = LoggerFactory.getLogger(getClass()); …
1
vote

log4j log file names?

If the job names are known ahead of time, you could include the job name when you do the getLogger() call. You then can bind different appenders to different loggers, with separate file names (or …
1
vote

Log4j: Why is the root logger collecting all log types regardless the configuration?

Two things: Check additivity and decide whether you want log events captured by more detailed levels of logging to propagate to the root logger. Secondly, check the level for the root logg …
0
votes

Sequence Diagram Reverse Engineering

A friend of me directed me to SEQUENCE (http://www.xanthan.com/ajm/sequencev7/sequence.jar). I cannot find any other …
2
votes

How do I create a thread dump of a Java Web Start application

Recent JDKs (sadly not JREs) include tools like jstack which does such things. JVMs from version 5 include JMX extensions to get thread dumps, memory statistics, and much more. All java applicati …
0
votes

When do you use Java’s @Override annotation and why?

@Override on interfaces actually are helpful, because you will get warnings if you change the interface. …
1
vote

Can I compose a Spring Configuration File from smaller ones?

We do this in our projects at work, using the classpath* resource loader in Spring. For a certain app, all appcontext files containing the application id will be loaded: classpath* …
0
votes

Java jvm parameters

You can change a system property using System.setProperty(), but whether or not this has an effect really depends on that system property. Some properties are read statically, i.e. at class loadin …
1
vote

Tips on walking through unfamiliar code or info on tools that help the process?

A tip I got from listening to a presentation given by Michael Fethers is to write unit tests for the code. By running these tests with different inputs you get an idea on the behavior of the class …
1
vote

Overriding equals and hashCode in Java

The first question you should ask is do you really need to? java.lang.Object has implementations of these methods that are sufficient for usage as hashtable keys. …
0
votes

Most important problem solved by EJB 3?

One thing that has bitten many when using EJBs, or J2EE in general, is the dependency on the application server you're running your EJBs on. The appserver tends to be supported for a particular se …