Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个我无法解决的小问题。默认情况下,propertyingo 值为 anyType:
<n1:Role i:type="d:anyType">
如何将此类型更改为 a:User ?
如果我正确理解您的问题,您可以使用 setType 方法:您创建您的 PropertyInfo 对象,然后在您的代码中设置您的自定义类型:
PropertyInfo role = new PropertyInfo(); role.setType(User.class);
或者另一种方法是将您的自定义类型(Class 的实例)分配给以下type字段PropertyInfo:
type
PropertyInfo
role.type = User.Class;