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.
有没有将 JSON Jackson 与 greenDAO 集成的最佳方法。此外,如何使用 greenDAO 处理多对多关系映射。我发现,我们需要创建一个连接表来进行多对多映射。有没有将所有这些功能结合在一起的例子。
您可以在 dao 生成器文件编辑 entity.ftl 中执行此操作
并添加必要的行来整合杰克逊,即
import com.fasterxml.jackson.annotation.JsonProperty;
和
@JsonProperty("Tag Name")
因此,您不必为此编写任何额外的代码。