在 restlet 中出现此错误:
ForwardUIApplication ; Exception while instantiating the target server resource.
java.lang.InstantiationException: me.unroll.forwardui.server.ForwardUIServer$UnsubscribeForwardUIResource
我确切地知道为什么。这是因为我的构造函数如下所示:
public UnsubscribeForwardUIResource(MySQLConnectionPool connectionPool) {
Restlet 像这样访问资源:
router.attach(Config.unsubscribeUriPattern(), UnsubscribeForwardUIResource.class);
问题是我实际上需要那个 ctor 论点。我怎样才能使它可访问?(注意我没有使用任何 IOC 框架,只是使用了很多 ctor 参数,但这实际上是一种 IOC 模式)。