gpt4 book ai didi

java - Play 2.4.6,在测试中为字节码增强配置build设置

转载 作者:行者123 更新时间:2023-11-28 20:53:27 24 4
gpt4 key购买 nike

我将 Play 框架 2.4.6 与 Ebean 和 Java 结合使用。

当我运行测试时,我无法设置任何字段的值。我认为字节码增强(自动生成 getter/setter)不起作用。

我的测试(保持冷静,框架应该为“name”放置 getter/setter):

    @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 字节码增强功能不适用于“测试”目录中的代码。根据这篇文章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设置在 build.sbt 中,我尚未实现无错误加载。

问题是,如何配置build设置文件以像上面的帖子状态一样工作,但使用新的 build.sbt 样式?

我也试过只使用旧的 build.scala,但它在每一行都给我错误。

我知道最简单的解决方案是手动放置 getter/setter,但我想尝试使用 Play 样式。

如有任何帮助,我们将不胜感激。

编辑

根据文档,我的类有公共(public)的、非静态的、非最终的字段。它只有一个公共(public)静态字段,用于获取 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>() {};
}

最佳答案

您发布的两个引用资料都非常过时。你应该see how to use the enhancer here .特别注意关于how to setup的部分.此外,使用它时有一些限制:

The enhancer looks for all fields on Java classes that:

  • are public
  • are non static
  • are non final

For each of those fields, it will generate a getter and a setter if they don’t already exist. If you wish to provide a custom getter or setter for a field, this can be done by just writing it, the Play enhancer will simply skip the generation of the getter or setter if it already exists.

因此,检查 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")

关于java - Play 2.4.6,在测试中为字节码增强配置build设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35727957/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com