Here are a few Maven things I want to remember: If you want to download all the source jars in a project: mvn dependency:resolve -Dclassifier=sources Print dependencies: mvn dependency:tree more »
Category: "Java"
Just thought I'd post this to help anyone else coping with this error message. expected end of call ('z') at 'M'. Check method arguments and ensure method overloading is enabled if necessary Here is the fix: package uk.co.bigsoft.app.hessian.clients;… more »
I use Spring Tool Suite (STS) when I'm working on Java projects that heavily use the Spring Framework. One gotcha that keeps getting me is the following message.
The Tomcat server configuration at \Servers\Pivotal tc Server Developer Edition… more »
Configuring the Log4J properties file is one of those tasks which you have to spend a while trying to figure out but you invariably end up with the same thing. In fact most of the time something you cut and paste from the internet will do just fine. So… more »
I wrote a huge article titled Configuring log4j.properties on, funnily enough, how to configure Log4J but sometimes it still isn't as good as great example: log4j.rootLogger = INFO, X log4j.logger.A.B.C=ALL, X # or this for custom logger… more »