因此,我一直在尝试让 SmartGWT 使用自动数据源连接到弹簧配置的休眠 bean,并将其插入高级过滤器构建器小部件。
我可以在日志中看到它工作到一半,因为它正确地构建了数据源查找内容并按照应有的方式自动映射模型类。它还进行了正确的休眠 SQL 查询以从数据库中拉回数据,但是当它将 json 结果发送到客户端时,JSTranslator 堆栈在 translate 方法上溢出。就像它出于某种原因无限期地递归一样。对我来说,它闻起来像一个 smartgwt 错误,但我不确定。我认为它闻起来像错误的原因是,当我从表中删除所有数据时,它不会出错并将列列表正确返回给客户端。非常令人沮丧!ds.xml 文件如下所示:
<DataSource
ID="humintHB"
serverType="hibernate"
autoDeriveSchema="true"
schemaBean="com.fgm.csip.model.pub.Humint"
beanClassName="com.fgm.csip.model.pub.Humint">
<serverObject lookupStyle="spring" bean="humintDao"/>
<operationBindings>
<binding operationType="fetch" serverMethod="fetch">
<serverObject lookupStyle="spring" bean="humintDao"/>
</binding>
</operationBindings>
</DataSource>