尝试使用gvNIX为我的域模型创建数据表。跟随github上的quickstart,修改了我的问题域。一切都运行正常,直到我到达:
~.domain.Profile roo-gvNIX> web mvc datatables add --type ~.web.Profile --inline true --ajax true
结果是:
Undo manage SRC_MAIN_WEBAPP/WEB-INF/spring/webmvc-config.xml
Can't get Type details
" Undo manage"是什么意思?信息?还有什么我可以研究的吗?
答案 0 :(得分:0)
问题是预期 - 类型应该是控制器。在上面的例子中:
web mvc datatables add --type ~.web.ProfileController --inline true --ajax true
而不是:
web mvc datatables add --type ~.web.Profile --inline true --ajax true