Netbeans IDEを使用し、フレームワークを使用しないエンタープライズソフトウェアプロジェクトでの作業に制限されています。
フロントエンドディスプレイはregister.jsp
です。私のモデルパッケージにはCustomer.java
、いくつかのゲッターとセッターを含むクラスが含まれています。データパッケージには「CustomerData.java」が含まれており、顧客に関連するDB関数(登録、ログインなど) CustomerData
が拡張されていHttpServlet
ます。
CustomerData
登録フォームのクラスから特定のメソッドを参照する必要があります。これは可能ですか?
これが可能な場合、およびのweb.xml
ファイルエントリはどうなりますか?servlet
servletmapping
これがコードです。
Register.jsp
<form name="loginForm" method="post" action="CustomerData/RegisterCustomer">
......
</form>
CustomerData.javaスケルトン:
public class CustomerData extends HttpServlet {
public void registerCustomer(HttpServletRequest request)
throws ServletException, IOException
{
// this is the method I need to reference. It creates a db connection, checks to see if
// the Customer is already in the DB, and if not, registers the user.
}
public void loginCustomer(HTTPServlet request)
throws ServletException, IOException
{
// Some other Customer data method that will need to be called from my login.jsp page
}
public void SomeOtherMethod()
{
// some helper methods or validation methods for Customer
}
}