我们在同一个表中有两个id /列....一个是事件ID和另一个事件系列ID ..两者实际上是相同的。就像Event系列在具有相同数据/列的Event之上。这就像自我加入。
<html>
<body>
<a href="#" id="getdata-button">Get JSON Data</a>
<div id="showdata"></div>
</body>
</html>
$(document).ready(function(){
//attach a jQuery live event to the button
$('#getdata-button').live('click', function(){
$.getJSON('http://dev.app.horsebuzz.com/dbconnection/getevents.php', function(data) {
//alert(data); //uncomment this for debug
//alert (data.item1+" "+data.item2+" "+data.item3); //further debug
for(var i=0;i<data.event.length;i++){
$('#showdata').html("<p>item1="+data.event[i].title+" item2="+data.event[i].start_date+" item3="+data.event[i].location+"</p>");
}
});
});
});
如何为此表编写域对象/ pojo类? 我写的是正确还是错误。这种映射有任何缺点吗?
编辑后
我正在使用JPA,Spring MVC。