我在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中进行连接池的最佳方法是什么?
答案 0 :(得分:6)
这是在Restlet 2.0之前做到这一点的方式(实际上我认为他们改变了大约2.0-M5左右)。无论如何,你现在的方式是:
ServletContext sc = (ServletContext) getContext().getServerDispatcher().getContext().getAttributes().get( "org.restlet.ext.servlet.ServletContext" );
希望有所帮助。