我正在尝试在 play 2.0 中实现 play 1.0 中的 yabe 教程
目前我被困在标记功能上:http ://www.playframework.com/documentation/1.2.3/guide6
本质上问题是这样的:
我有一个 Post 类,每个 Post 对象可以有多个与该类关联的标签:
@ManyToMany(cascade=CascadeType.PERSIST)
public Set<Tag> tags;
我想编写一个函数,给定一个标签数组,当且仅当所有标签都存在于 Post 对象中时,它将返回一个 Post 列表。
单元测试如下:
@Test
public void testTags() {
// Create a new user and save it
SuperUser.setInstance("bob@gmail.com", "secret", "Bob").save();
SuperUser bob = SuperUser.getInstance();
// Create a new post
Post bobPost = new Post(bob, "Hello world","My first post");
bobPost.save();
Post anotherBobPost = new Post(bob, "Hello world", "Hop");
anotherBobPost.save();
// Well
assertEquals(0, Post.findTaggedWith("Red").size());
// Tag it now
bobPost.tagItWith("Red").tagItWith("Blue").save();
anotherBobPost.tagItWith("Red").tagItWith("Green").save();
// Check
assertEquals(2, Post.findTaggedWith("Red").size());
assertEquals(1, Post.findTaggedWith("Blue").size());
assertEquals(1, Post.findTaggedWith("Green").size());
// Checks for multiple tag params
assertEquals(1, Post.findTaggedWith("Red", "Blue").size()); //Fail - Actual: 0
assertEquals(1, Post.findTaggedWith("Red", "Green").size());
assertEquals(0, Post.findTaggedWith("Red", "Green", "Blue").size());
assertEquals(0, Post.findTaggedWith("Green", "Blue").size());
SuperUser.removeSuperUser();
}
我目前的实现如下:
public static List<Post> findTaggedWith(String... tags) {
ExpressionList<Post> expAcc = Post.find.fetch("tags").where().conjunction();
for( String tag : tags){
expAcc = expAcc.eq("tags.name", tag);
}
return expAcc.endJunction().findList();
}
我不知道下一步该做什么,因为我很暴力地强迫这个并且无处可去:(
谢谢!