<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
Select type of material<select id="mySelect" onchange="myFunction()">
<option value="mango">mango
<option value="grape">grape
</select>
Select weight type<select id="mySelect" onchange="myFunction()">
<option value="Tons">Tons
<option value="KG">KG
</select>
Enter Value<input type="text" >
<input type="button" value="Enter">
</body>
</html>
&#13;
我想在基于Spring的编程中删除数据库值。我能怎么做 这个。我想在后端执行此操作。这个过程是什么?
答案 0 :(得分:0)
在基于Spring的应用程序中,删除等数据库操作由Repository类执行。根据你的问题,我想你已经过了太多&#34;从存储库层。所以我建议你采取step-by-step tutorial。它将指导您一直到业务逻辑和数据访问。