我正在使用Play框架2.4.6与Ebean和Java。
当我运行测试时,我无法设置任何字段的值。我认为字节码增强(自动getter / setter生成)不起作用。
我的测试(保持冷静,框架应该将getter / setter设为“name”):
@Test
public void createAndUpdate() {
running(fakeApplication(), new Runnable() {
public void run() {
Usuario newUser = new Usuario("bob@gmail.com", "secret", "Spongebob Squarepants");
newUser.save();
Usuario alterUser = Usuario.find.where().eq("email", "bob@gmail.com").findUnique();
alterUser.name = "another name";
alterUser.update();
Usuario bob = Usuario.find.where().eq("email", "bob@gmail.com").findUnique();
assertNotNull(bob);
assertEquals("another name", bob.name);
}
});
}
我尝试使用save()
代替update()
而没有取得预期效果。
测试失败;输出:
[error] Test IntegrationTest.createAndUpdate failed: expected:<[another name]> but was:<[Spongebob Squarepants]>, took 0.228 sec
我已经读过Play字节码增强功能不适用于“test”目录中的代码。根据这篇文章https://groups.google.com/d/msg/play-framework/fRHXLZi0J1c/CS8b8XBNS3UJ,我需要配置buid.scala
这样的文件https://gist.github.com/joelso/3496872
该帖子适用于版本2.0.x,因此它使用build.scala
文件,但对于2.4.x,构建设置为build.sbt
,我没有实现加载它而没有错误。
问题是,如何配置构建设置文件以使用上述帖子状态但使用新的build.sbt
样式?
我也尝试过只使用旧的build.scala
,但它在每一行都会出错。
我知道最简单的解决方案是手动输入getter / setter,但我想尝试使用Play风格。
任何帮助都将不胜感激。
修改
根据文档,我的班级有公共,非静态,非最终字段。它只有一个公共静态字段,用于获取Finder
对象并进行查询。我班上的字段就像文档https://www.playframework.com/documentation/2.4.x/JavaEbean#Using-Model-superclass中的字段一样
我甚至尝试使用方法而不是静态字段,但它没有任何区别。
这是“Usuario”课程。我尝试更改方法的“查找”静态字段,但结果是一样的。
@Entity
public class Usuario extends Model {
@Id
public Long id;
public String email;
public String password;
public String name;
public boolean esAdmin;
public Usuario(String email, String password, String name) {
this.email = email;
this.password = password;
this.name = name;
this.esAdmin = false;
}
public static Find<Long, Usuario> find = new Find<Long, Usuario>() {};
}
答案 0 :(得分:0)
您发布的两个引用都已过时。你应该see how to use the enhancer here。特别注意关于how to setup的部分。此外,使用它时存在一些限制:
增强器查找Java类上的所有字段:
- 是公开的
- 是非静态的
- 不是最终的
对于每个字段,如果它们尚不存在,它将生成一个getter和一个setter。如果您希望为字段提供自定义getter或setter,只需编写它就可以完成,Play增强器只会跳过getter或setter的生成(如果已经存在)。
因此,检查类Usuario
的属性是否满足条件。
修改后:
我已将您的find
声明更改为以下行:
public static Find<Long, Usuario> find = new Finder<>(Usuario.class);
一切都按预期工作。我在conf/application.conf
处也有以下配置:
ebean.default=["models.*"]
这是build.sbt
:
name := """test"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava, PlayEbean)
scalaVersion := "2.11.6"
libraryDependencies ++= Seq(
javaJdbc,
cache,
javaWs,
"junit" % "junit" % "4.12" % Test
)
// Play provides two styles of routers, one expects its actions to be injected, the
// other, legacy style, accesses its actions statically.
routesGenerator := InjectedRoutesGenerator
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-q")
project/plugins.sbt
的内容:
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.4.6")
addSbtPlugin("com.typesafe.sbt" % "sbt-coffeescript" % "1.0.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-less" % "1.0.6")
addSbtPlugin("com.typesafe.sbt" % "sbt-jshint" % "1.0.3")
addSbtPlugin("com.typesafe.sbt" % "sbt-rjs" % "1.0.7")
addSbtPlugin("com.typesafe.sbt" % "sbt-digest" % "1.1.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-mocha" % "1.1.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-play-enhancer" % "1.1.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-play-ebean" % "2.0.0")