编程语言
首页 > 编程语言> > Java从restlet资源中访问ServletContext

Java从restlet资源中访问ServletContext

作者:互联网

我在java中使用Tomcat服务器,并希望能够从restlet资源访问ServletContext,以便访问我的缓存DataSource对象(以池化mysql连接). org.restlet.resource.Resource附带一个Context对象,但它与ServletContext没有任何关系.所以经过一些谷歌搜索后,我发现了以下内容:

final String contextKey = "org.restlet.ext.servlet.ServletContext";
final String poolKey = "MyCachedDBPool";
final Map<String, Object> attrs = getContext().getAttributes();
final ServletContext ctx = (ServletContext) attrs.get(contextKey);
if (ctx == null) {
  throw new Exception("Cannot find ServletContext: " + contextKey);
}
final DataSource ds = (DataSource) ctx.getAttribute(poolKey);
if (ds == null) {
  throw new DetourQAException("DataSource not stored in context" 
    + poolKey + "attr");
}

但它为ServletContext返回null.有没有人成功从restlet资源中访问ServletContext,你是怎么做到的?

如果这不是建议的连接池方法,那么在restlet中进行连接池的最佳方法是什么?

解决方法:

这是在Restlet 2.0之前做到这一点的方式(实际上我认为他们改变了大约2.0-M5左右).无论如何,你现在的方式是:

ServletContext sc = (ServletContext) getContext().getServerDispatcher().getContext().getAttributes().get( "org.restlet.ext.servlet.ServletContext" );

希望有所帮助.

标签:java,servlets,connection-pooling,restlet
来源: https://codeday.me/bug/20190606/1189661.html