Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3781022
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T10:53:18+00:00 2026-05-19T10:53:18+00:00

I have created a Java web app project. I am loading some external library

  • 0

I have created a Java web app project. I am loading some external library which further require some external dependecies which are not on my computer and need to be downloaded through Maven. Because of which I am getting following exception on running:-

exception : java.lang.NoClassDefFoundError: org/slf4j/impl/StaticLoggerBinder

I do not know how I can integrate my project (in Netbeans) with maven to download the external dependencies.
Can someone here show me the direction how to use maven in netbeans to download the dependencies from internet?

I have already installed maven 3.0.2 to my computer

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T10:53:18+00:00Added an answer on May 19, 2026 at 10:53 am

    You are missing SLF4J, a standard logging framework.

    You need both the SLF4J api and an implementation library, usually log4j. And the versions of the two have to fit together. Here’s an example configuration (add these to your pom.xml):

    <dependency>
        <!-- the API -->
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-api</artifactId>
        <version>1.6.1</version>
    </dependency>
    
    <dependency>
        <!-- log4j binding -->
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-log4j12</artifactId>
        <version>1.6.1</version>
    </dependency>
    
    <dependency>
        <!-- redirect any commons-logging calls to slf4j -->
        <groupId>org.slf4j</groupId>
        <artifactId>jcl-over-slf4j</artifactId>
        <version>1.6.1</version>
    </dependency>
    

    Reference:

    • SLF4J: Binding with a logging framework at
      deployment time
    • SLF4J: Bridging legacy APIs
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Java web application that has a 'disconnected' Java Swing desktop app.
Started coming up with a java web app for online user interaction. Decided to
For my web application, i have created login page. To block the access to
I'm using Eclipse to develop a java web app and My IT department called
I have been trying to set up a DatabaseConnectionPool for a web app for
I have been using IntelliJ IDE (version 5.1) with Tomcat server (version 5.5) to
I have an application that I am working on modifying and I am having
I am using Glassfish v3 server. Usually the DB connection with EJB3 + JPA
In short: how to put a zipful of csv data into mysql? Long: I
I was wondering is learning Python and Django a hard/time consuming process for someone

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.