I\'m trying to setup a basic spring-mvc project with weblogic. I get this stacktrace
weblogic.application.ModuleException: java.lang.ClassNotFoundException: org.
Your jar
dependencies are missing. You have to import them manually or in case of using Maven, add thee lines to your pom.xml
, that assures all the dependencies.
4.3.2.RELEASE
org.springframework
spring-core
${spring.version}
org.springframework
spring-web
${spring.version}
org.springframework
spring-webmvc
${spring.version}
Then you can clean and rebuild your project. It should be ok.