我正在尝试使用休眠 ORM 从数据库中检索数据,并使用 Struts2 将输出作为 json 结果.一切都可以从数据库中检索数据,但对于 json 结果,我只得到 {}
.
我认为我的编码有问题.但是需要一些帮助才能弄清楚.
<块引用>这是我的动作类:
@ParentPackage("json-default")公共类 SocialIconsAction 扩展 ActionSupport {私人列表<TiendayaCurrencies>_货币;公开列表<TiendayaCurrencies>获取货币(){返回_货币;}public void setCurrency(List<TiendayaCurrencies>_currency) {this._currency = _currency;}@Action(值 = "货币", 结果 = {@Result(name = "success", type = "json", params = {"includeProperties","_currency\[\d+\]\..*"})})@覆盖公共字符串执行(){_currency = loadCurrencies();/*数据库结果没有问题.只是为了测试一切正常.*///for (TiendayaCurrencies _currency1 : _currency) {//System.out.println("Title - "+_currency1.getTitle());/