こんにちは、単純な Web アプリケーション フォームを作成して、休止状態とサーブレットを練習しています。ハイバネートを使用してデータを保存せず、JSP とサーブレットのみを使用すると、プログラムは正常に動作します。Hibernate コードを追加すると、このエラーが発生します。
SEVERE: Servlet.service() for servlet [com.ApplicationForm.ApplicationForm] in context with path [/ApplicationForm] threw exception [Servlet execution threw an exception] with root cause
java.lang.ClassNotFoundException: org.hibernate.HibernateException
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1714)
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1559)
at com.ApplicationForm.AppFormServletHelper.doPost(AppFormServletHelper.java:54)
at com.ApplicationForm.ApplicationForm.doPost(ApplicationForm.java:24)
//More errors messages here
エラー メッセージは常に、Hibernate インスタンス クラス AppFormServletHelper を含むこのクラスを指しています。(以下の完全なコード)
public class AppFormServletHelper extends ApplicationFormServletBase {
private static AppDetails applicant = new AppDetails();
private static SaveApplicantData list = new SaveApplicantData();
public AppFormServletHelper(HttpServlet servlet, HttpServletRequest request, HttpServletResponse response){
super(servlet, request, response);
}
public void doPost() throws ServletException, IOException{
int userID=0;
String stringUserID, firstName, lastName, address, mobile, landLine;
String sex, university;
stringUserID = request.getParameter((Integer.toString(userID)));
firstName = request.getParameter("firstName");
lastName = request.getParameter("lastName");
address = request.getParameter("address");
mobile = request.getParameter("mobile");
landLine = request.getParameter("landLine");
sex = request.getParameter("sex");
university = request.getParameter("university");
//more request.getParameter lines here
recordApplicantDetails(userID, firstName, lastName, address, mobile, landLine, sex);
recordApplicantEducation(university, uniDateGrad, hsGrad, hsDateGrad, elem, elemDateGrad);
recordApplicantEmployment(companyN, jobRole, jobResp);
//Save data using hibernate
**##Error pointing to this line**
**HibernateSaveData save = new HibernateSaveData();
save.beginHibernateTransaction(applicant);**
list.addApplicantData(applicant);
list.setApplicantData(applicant, list);
request.setAttribute("AppDetails", applicant);
RequestDispatcher dispatch = request.getRequestDispatcher("/WEB-INF/UserDetails.jsp");
dispatch.forward(request, response);
}
//Implementation of recordApplicantDetails method
//Implementation of recordApplicantEducation method
//Implementation of recordApplicantEmployment method
}
これは ApplicationFormServletBase クラスです
@WebServlet("/appFormServlet")
public class ApplicationForm extends HttpServlet {
protected void doPost(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
AppFormServletHelper controllerHelper = new AppFormServletHelper(this,req, resp);
controllerHelper.doPost();
}
これは私の HibernateSaveData クラスです
public class HibernateSaveData {
private Session session;
public void beginHibernateTransaction(AppDetails details){
session = new HibernateFactoryUtil().getSessionFactory().openSession();
try{
session.beginTransaction();
session.save(details);
session.getTransaction().commit();
}
catch (HibernateException e){
if (session.getTransaction()!=null){
session.getTransaction().rollback();
}
System.out.println("Hibernate exception occured: "+ e);
}
finally {
session.close();
}
}
}
また、すでに hibernate.cfg.xml を構成しており、サーブレットに @WebServlet アノテーションを使用しているため、xml マッピングを構成しませんでした。すべてのコードを投稿したわけではありませんが、この問題の解決に役立つ場合は掲載します。誰でもこれで私を助けることができますか?前もって感謝します。
アップデート
これが私のフォルダの設定方法です
これは私の hibernate.cfg.xml です
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!-- Database connection settings -->
<property name="connection.driver_class">org.postgresql.Driver</property>
<property name="connection.url">jdbc:postgresql://localhost:5432/ApplicationForm</property>
<property name="connection.username">postgres</property>
<property name="connection.password">password</property>
<!-- JDBC connection pool (use the built-in) -->
<property name="connection.pool_size">1</property>
<!-- SQL dialect -->
<property name="dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<!-- Disable the second-level cache -->
<property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
<!-- Echo all executed SQL to stdout -->
<property name="show_sql">true</property>
<!-- Drop and re-create the database schema on startup -->
<property name="hbm2ddl.auto">create</property>
<!-- Names the annotated entity class -->
<mapping class="com.ApplicationForm.StoreData.AppDetails"/>
</session-factory>
</hibernate-configuration>