简体   繁体   中英

java.lang.ClassNotFoundException: org.springframework.core.Conventions

when i'm trying to run my project it's giving an exception in my jsp page.

SEVERE: Servlet.service() for servlet [jsp] in context with path [/com.amdocs.vPic] threw exception [An exception occurred processing [/home.jsp] at line [144]

    141:                    </button>
    142:                </div>
    143: <div class="modal-body">
    144:                    <form:form action="LoginServlet" method="post"  >
    145:                        <div class="form-group">
    146:                            <form:label class="col-form-label" path = "uname">E-mail</form:label>
    147:                            <form:input type="text" class="form-control" placeholder=" " path="email" required="" />

Your servlet needs a class which isn't part of your WAR or container's CLASSPATH. It's probably the spring jar file missing on your server's classpath.

您可以尝试将spring-core-3.0.5.RELEASE.jar添加到类路径中,如果还没有这样做,还可以将其更新为依赖项。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM