我一直在研究一个简单的jsp页面(对数据库使用hibernate),基本上,在此页面中,我有一个通过findById()
在servlet上获得的实体,并且我希望该实体能够只需显示和修改即可,当客户想要更改值时,onChange
将替换实体中的值,然后在数据库中对其进行更新。
这是我正在谈论的JSP页面:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1" import="com.tsi.entity.UtenteRegistrato"
import="com.tsi.services.UtenteRegistratoService"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Visualizzazione risultato</title>
<%
UtenteRegistrato ur = (UtenteRegistrato) request.getSession().getAttribute("usr");
UtenteRegistratoService urs = new UtenteRegistratoService();
%>
</head>
<body>
<form method='post' action='<%=display.jsp%>' name='modifica'>
<table border=1>
<tr>
<th>ID</th>
<th>Nome</th>
<th>Cognome</th>
<th>Sesso</th>
<th>Codice Fiscale</th>
<th>Luogo di Nascita</th>
<th>Residenza</th>
<th>telefono</th>
</tr>
<tr>
<td><input type='text' name='id' value='<%=ur.getId()%>'></td>
<td><input type='text' name='nome' value='<%=ur.getNome()%>'></td>
<td><input type='text' name='cognome'
value='<%=ur.getCognome()%>'></td>
<td><input type='text' name='sesso' value='<%=ur.getSesso()%>'></td>
<td><input type='text' name='codiceFiscale'
value='<%=ur.getCodiceFiscale()%>'></td>
<td><input type='text' name='luogoDiNascita'
value='<%=ur.getLuogoDiNascita()%>'></td>
<td><input type='text' name='residenza'
value='<%=ur.getResidenza()%>'></td>
<td><input type='text' name='telefono'
value='<%=ur.getTelefono()%>'></td>
</tr>
</table>
<input type="submit" value='Modifica dati'>
</form>
</body>
</html>
这是加载页面时看到的:
我的问题是:如何使用onChange在同一JSP页面中检索值? 可能吗?如果不是,那么仅创建表单并将表中的所有数据发送到其他servlet中更好吗?
编辑:如果有人没有注意到,该文本是可编辑的,并且我希望将从用户插入的新值立即保存在同一jsp页面中