@GET
@Path("/book")
public Response getBook(@BeanParam Filter filter) {
}
过滤器参数已初始化但未在bean中设置任何内容
class Filter {@QueryParam("author")String author}
我对Filter对象中存在的所有属性都有setter和getter。
F.Y.I。我正在使用HK2 guice-bridge。
答案 0 :(得分:1)
我能用guice-bridge重现问题。好像什么时候的 bridge被初始化(通过guiceBridge.bridgeGuiceInjector(...)),只调用BeanParam的默认构造函数,而不是设置属性(或使用参数调用构造函数)。
如果在您的项目中可以,您可以尝试为构造函数提供参数。
这是一个简单的应用程序:
public class App extends ResourceConfig {
@Inject
public App(final ServiceLocator serviceLocator) {
register(Service.class);
final Injector injector = initializeInjector(serviceLocator);
}
private Injector initializeInjector(final ServiceLocator serviceLocator) {
GuiceBridge.getGuiceBridge()
.initializeGuiceBridge(serviceLocator);
final Injector injector = Guice.createInjector(
new ApplicationModule(serviceLocator));
final GuiceIntoHK2Bridge guiceBridge = serviceLocator.getService(GuiceIntoHK2Bridge.class);
guiceBridge.bridgeGuiceInjector(injector);
return injector;
}
}
二手服务:
@Path("service")
public class Service {
@POST
@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
public Response save(@Valid @BeanParam final SimpleBean bean) {
System.out.println(bean.getProperty());
return Response.status(Status.CREATED)
.build();
}
}
这是一个简单的bean:
public class SimpleBean {
// Avoid this constructor!
// public SimpleBean() {
// System.out.println("constructor called");
// }
public SimpleBean(@FormParam("property") final String property) {
this.property = property;
System.out.println("constructor with params called: " + property);
}
@Length(max = 100)
@NotBlank
private String property;
public String getProperty() {
System.out.println("getter called");
return property;
}
public void setProperty(final String property) {
System.out.println("setter called with " + property);
this.property = property;
}
}
使用Guice版本4.1.0,guice-bridge版本2.4.0,Jersey版本2.25.1和Javax servlet版本3.1.0。
答案 1 :(得分:0)
你可以尝试使用没有桥梁的Guice-Jersey。有一个名为"Guice Webserver Module"的项目,它将Guice与Jersey 2,Jetty和Jackson集成在一起,实现了这种方法。
您需要做的是在Guice上下文中绑定您的资源,例如
INSTEAD OF INSERT
泽西的功能将扫描所有使用@Path注释的绑定,并在实例化后在Jersey的上下文中注册实例:
public class MyModule extends AbstractModule() {
public void configure() {
bind(BooksResource.class);
}
BeanParams还有一个例子(作为集成测试的一部分编写) - BeanParamsIntegrationTest