Glashfish と derby データベースを使用して、NetBeans を使用して Web アプリケーションを作成しています。
jspを使用してロギングページを作成しようとしています。
最初に、データベースへの接続を作成して文をスローしましたが、これは、アプリが成長すると、醜いことを除けば非常に大変な作業になるため、enitty クラスとセッション Bean を作成しました。問題は、エンティティの使用をjspページに統合する方法がわからないことです。
これがコードです。
session.setAttribute("usuario",usuario);
Class.forName("org.apache.derby.jdbc.EmbeddedDriver");
Connection conexion = DriverManager.getConnection("jdbc:derby://localhost:1527/TFG", "root", "root");
Statement stmt = conexion.createStatement();
ResultSet rs = stmt.executeQuery("SELECT NIVEL,ID FROM USUARIO WHERE USUARIO = '" + usuario + "' AND PASS = '" + pass + "'");