smartgwt listgrid RestDataSource没有填充

时间:2012-11-19 13:59:25

标签: spring datasource smartgwt listgrid

我正在使用这个前端框架应用程序......

我最近开始使用smartgwt,我正在使用Spring MVC集成来构建一个新应用程序。

我正在使用带有RestDataSource的ListGrid(使用 mvc:annotation-driven 为普通JSON使用Rest服务)

我可以看到servaice正常消耗,或许我的网格从未显示其中的数据。

有人可以帮助我吗?

这是我的 ListGrid

public class ListGrid扩展com.smartgwt.client.widgets.grid.ListGrid {

private final SpringJSONDataSource springJSONDataSource;

public ListGrid(List<DataSourceField> fields) {
    this(new PatientDataSource(fields));
}

public ListGrid(SpringJSONDataSource springJSONDataSource) {
    this.springJSONDataSource = springJSONDataSource;
    init();
}

private void init() {
    setAutoFetchData(true);
    setAlternateRecordStyles(true);
    setEmptyCellValue("???");
    setDataPageSize(50);

    setDataSource(springJSONDataSource);
}

}

现在存在DataSource implmentation

公共抽象类SpringJSONDataSource扩展了RestDataSource {

protected final HTTPMethod httpMethod;

public SpringJSONDataSource(List<DataSourceField> fields) {
    this(fields, HTTPMethod.POST);
}

public SpringJSONDataSource(List<DataSourceField> fields, HTTPMethod httpMethod) {
    this.httpMethod = httpMethod;
    setDataFormat(DSDataFormat.JSON);
    addDataSourceFields(fields);
    setOperationBindings(getFetch());
    addURLs();
}

private void addURLs() {
    if(getUpdateDataURL() != null)
        setUpdateDataURL(getUpdateDataURL());

    if(getRemoveDataURL() != null)
        setRemoveDataURL(getRemoveDataURL());

    if(getAddDataURL() != null)
        setAddDataURL(getAddDataURL());

    if(getFetchDataURL() != null)
        setFetchDataURL(getFetchDataURL());

}

private void addDataSourceFields(List<DataSourceField> fields) {
    for (DataSourceField dataSourceField : fields) {
        addField(dataSourceField);
    }
}

protected abstract OperationBinding getFetch();
protected abstract OperationBinding getRemove();
protected abstract OperationBinding getAdd();
protected abstract OperationBinding getUpdate();

public abstract String getUpdateDataURL();
public abstract String getRemoveDataURL();
public abstract String getAddDataURL();
public abstract String getFetchDataURL();

}

扩展SpringJSONDataSource的类PatientDataSource

公共类PatientDataSource扩展了SpringJSONDataSource {

public PatientDataSource(List<DataSourceField> fields) {
    super(fields);
    setPrettyPrintJSON(true);
}

@Override
protected OperationBinding getFetch() {
    OperationBinding fetch = new OperationBinding();
    fetch.setOperationType(DSOperationType.FETCH);
    fetch.setDataProtocol(DSProtocol.POSTMESSAGE);
    DSRequest fetchProps = new DSRequest();
    fetchProps.setHttpMethod(httpMethod.toString());
    fetch.setRequestProperties(fetchProps);

    return fetch;
}

@Override
public String getFetchDataURL() {

    return "/spring/fetchPatients";
}

@Override
protected OperationBinding getRemove() {
    return null;
}

@Override
public String getRemoveDataURL() {
    return null;
}

@Override
protected OperationBinding getAdd() {
    return null;
}

@Override
public String getAddDataURL() {
    return null;
}

@Override
protected OperationBinding getUpdate() {
    return null;
}

@Override
public String getUpdateDataURL() {
    return null;
}

}

我的弹簧控制器PatientControler

@Controller 公共课PatienController {

Logger logger = Logger.getLogger(PatienController.class);

@Autowired
private PatientServices patientServices;

@RequestMapping(value = "/patientTest", method = RequestMethod.GET)
@ResponseBody
public Object getTest()
{
    return patientServices.getAllPatients();
}

@RequestMapping(value = "/fetchPatients", method = RequestMethod.POST)
@ResponseBody
public Object getAllPatients()
{
    return patientServices.getAllPatients();
}

}

PatientServiceImpl

公共类PatientServicesImpl实现了PatientServices {

public List<Patient> getAllPatients() {

    List<Patient> patients = new ArrayList<Patient>();
    Patient patient;

    for(int i = 0 ; i < 500 ; i++){
        patient = new Patient();
        patient.setDateOfBirth(new Date());
        patient.setFirstName("Joe");
        patient.setMiddleName("Moe");
        patient.setLastName("Blow");
        patient.setLastConsultation(new Date());
        patient.setSex(Sex.M);

        patients.add(patient);
    }

    return patients;
}

}

* 我真的卡住了我现在一直在寻找所有类型的答案....但是到目前为止,当我试图从我的RestDataSource覆盖transformResponse时,没有任何作用阻止参数“data”作为OBJECT ,返回一个数组[object Object],[object Object],[object Object],[object Object],[object Object] *

1 个答案:

答案 0 :(得分:0)

从RestDataSource传输的数据具有特定格式,在JavaDoc of the RestDataSource中描述 您的服务器必须了解该请求并发回有效的响应。

目前你的例子似乎没有遵守合同。

要调试发送到服务器和从服务器发送的流量,您可以使用SmartClient-Console。您可以通过以下浏览器书签打开它:

javascript:isc.showConsole()

您需要通过将以下模块添加到gwt.xml

来部署此控制台
<inherits name="com.smartclient.tools.SmartClientTools"/>

现在转到 RPC 标签并检查 Track-RPCs