Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The information on <a href="https://stackoverflow.com/users/750510/madhead">madhead</a>'s <a href="https://stackoverflow.com/a/19072360/404604">answer</a> was very helpful but I'm going to document the details of what I've done for the sake for others who (will) encounter the same problem.</p> <p>As the answer mentioned suggested, it was a problem with <code>slf4j</code> jars. To verify I did the following:</p> <ol> <li>Define exclusion on all dependencies that have dependencies on <code>slf4j</code>.</li> <li>Follow option 2 from <a href="https://stackoverflow.com/questions/19071485/why-do-i-keep-getting-nosuchmethoderror-on-locationawarelogger-when-running-jett#comment28192653_19072360">this suggestion</a>. <ul> <li>I wrote a unit test that just sysout's a String of my choosing, and define a breakpoint at that line.</li> <li>Then I debug the test as JUnit test, and open the Display view</li> <li>I needed to re-run it because <code>Display Result of Evaluating Selected Text</code> was disabled at first for some reason.</li> <li>I found out that the runtime still refers to the 1.5.8 version of <code>slf4j</code> that was still being added into the classpath regardless if I specified exclusion for it.</li> </ul></li> <li>The project I'm working on depends on another project I'm also working on (it's a multi-Maven project project), which specified dependency to <code>slf4j-jdk14 1.5.8</code>, so I just updated it to <code>1.6.1</code>. <ul> <li>I had to specify exclusion of <code>slf4j-api</code> under <code>slf4j-jdk14 1.6.1</code> because it was referring to version 1.5.8, and add direct dependency to <code>slf4j-api 1.6.1</code>.</li> </ul></li> </ol>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload