When trying to workout why a maven build is failing, I used these options to switch on JMX support inside Maven. Once Maven was running I connected jconsole to read the stats. Log lines have their thread name: more »
Category: "Java"
Here are a few Maven things I want to remember: Create project mvn archetype:generate Download all the source jars in a project mvn dependency:resolve -Dclassifier=sources Print dependencies mvn dependency:tree Download jar to local repo mvn… more »
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 »