2015-10-14 45 views
0

试图使用gvNIX为我的域模型创建数据表。遵循github上的quickstart,修改了我的问题域。一切运行正常,直到我到:撤消管理webmvc-config.xml无法获取类型详细信息

~.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 

什么是“撤销管理”信息的含义?还有什么我可以调查?

+0

开业github上的一个错误:https://github.com/gvSIGAssociation/gvnix/issues/20 –

回答

0

问题是,预计- 类型应该是一个控制器。在上面的例子:

web mvc datatables add --type ~.web.ProfileController --inline true --ajax true 

代替:

web mvc datatables add --type ~.web.Profile --inline true --ajax true 
相关问题