求一个关于struts2 + ajax + json+hibrenate的demo..
而ajax读取数是这样的方式
$.ajaxSettings.async = false;
$.ajax({
type : "POST",
contentType : "application/json",
url : "logbook.action,
data : "",
dataType : 'json',
timeout : 1000,
success : function(data) {
wcshowstr = data;
},
error : function() {
}
});