My Eclipse notified me that a new version of JNA is available for update and so I updated. But after that, my Java Web Application throws an exception;
java.lang.ClassNotFoundException: org.hibernate.cfg.Configuration from
My web application works perfectly before the update. How do I fix this?
I used this hibernate dependency
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>5.0.1.Final</version>
</dependency>
My jar files are on the target folder inside the lib. I'm using JSP, Servlet, Hibernate on JBoss server.