我有一个Wicket应用程序,我正在尝试实现可以远程更改的单独配置。无论如何,那是最终目标。
我要做的是通过手动启动Cayenne来工作,而不是使用web.xml文件。我尝试了很多不同的东西,但我不确定我是否完全理解上下文如何应用于所有线程。
我尝试在Application类中创建ServerRuntime。我也尝试过每个页面使用的自定义BasePage类。我可以通过在BasePage上执行以下操作来实现它,但它是不一致的:
public class BasePage ....
public static ServerRuntime runtime = new ServerRuntime("cayenne-config.xml");//This is in my BasePage class, but I've also tried this in the Application class
@Override
protected void init() {
BaseContext.bindThreadObjectContext(Application.runtime.getContext());//This is in my BasePage class
}
像我说的那样,那种作品,却不一致。 我一直都有错误
BaseContext.getThreadObjectContext();
错误是这样的:
java.lang.IllegalStateException: Current thread has no bound ObjectContext.
我似乎无法找到关于此的更多信息。我试着做这样的事情,并使用这些来访问运行时,但没有任何工作一致。
WebUtil.setCayenneRuntime(this.getServletContext(), runtime);
BaseContext.bindThreadObjectContext(WebUtil.getCayenneRuntime(((Application)getApplication()).getServletContext()).getContext());
非常感谢任何帮助。
答案 0 :(得分:0)
我找到了自己做的方法。
我正在扩展CayenneFilter并覆盖init方法。
在那里我几乎复制了他们的确切代码。我将能够在这里检查任何配置并加载正确的xml文件。这显然不是解决问题的解决方案,但绝对是向前迈出的一步,也可能是我最终做到这一点的方式。
无论哪种方式,这都是我测试过的。
@WebFilter(filterName = "cayenne-config", displayName = "cayenne-config", urlPatterns = {"/*"})
public class TestFilter extends CayenneFilter
{
@Override
public void init(FilterConfig config) throws ServletException
{
this.checkAlreadyConfigured(config.getServletContext());
this.servletContext = config.getServletContext();
WebConfiguration configAdapter = new WebConfiguration(config);
Collection modules = configAdapter.createModules(new Module[]{new WebModule()});
ServerRuntime runtime = new ServerRuntime("cayenne-test.xml", (Module[])modules.toArray(new Module[modules.size()]));
WebUtil.setCayenneRuntime(config.getServletContext(), runtime);
}
}
我认为不需要注释(我在web.xml文件中指定了所有注释),但我想我会把它留在这里,这样你就可以看到它正在发生变化。
如果我能找到一种方法来更改配置(FilterConfig)值(init参数),那么我可以将其更改为我想要使用的xml文件的名称,而不是覆盖整个方法。我无法弄清楚如何做到这一点,但我会稍后再看。
如果有人有另一个更好的答案,我很乐意听到。