gpt4 book ai didi

Java 从 reSTLet 资源中访问 ServletContext

转载 作者:搜寻专家 更新时间:2023-11-01 02:17:32 26 4
gpt4 key购买 nike

我在 java 中使用 Tomcat 服务器,并希望能够从 reSTLet 资源访问 ServletContext,以便访问我缓存的数据源对象(以池化 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 从 reSTLet 资源中访问 ServletContext,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3893386/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com