- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.directwebremoting.WebContext.getServletContext()
方法的一些代码示例,展示了WebContext.getServletContext()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WebContext.getServletContext()
方法的具体详情如下:
包路径:org.directwebremoting.WebContext
类名称:WebContext
方法名:getServletContext
暂无
代码示例来源:origin: org.directwebremoting/dwr
public Object doFilter(Object object, Method method, Object[] params, AjaxFilterChain chain) throws Exception
{
ServletContext context = WebContextFactory.get().getServletContext();
SessionFactory sessionFactory = (SessionFactory) context.getAttribute(ATTRIBUTE_SESSION);
Transaction transaction = null;
if (sessionFactory != null)
{
Session session = sessionFactory.getCurrentSession();
transaction = session.beginTransaction();
}
else
{
log.error("SessionFactory not initialized for this web application. Use: H3SessionAjaxFilter.setSessionFactory(servletContext, sessionFactory);");
}
Object reply = chain.doFilter(object, method, params);
if (transaction != null)
{
transaction.commit();
}
return reply;
}
代码示例来源:origin: org.directwebremoting/dwr
public void destroy()
{
WebContext webcx = WebContextFactory.get();
for(Creator c : creators.values()) {
if (c.getScope().equals(Creator.APPLICATION)) {
Object creatorInstance = webcx.getServletContext().getAttribute(c.getJavascript());
if (creatorInstance instanceof UninitializingBean) {
((UninitializingBean) creatorInstance).destroy();
}
}
}
}
代码示例来源:origin: org.directwebremoting/dwr
ServletContext sc = WebContextFactory.get().getServletContext();
try
代码示例来源:origin: org.directwebremoting/dwr
ServletContext threadServletContext = webContext.getServletContext();
welcomeFiles = getWebXmlWelcomeFileList(threadServletContext);
代码示例来源:origin: org.directwebremoting/dwr
public Object convertInbound(Class<?> paramType, InboundVariable data)
{
WebContext webcx = WebContextFactory.get();
if (HttpServletRequest.class.isAssignableFrom(paramType))
{
return webcx.getHttpServletRequest();
}
if (HttpServletResponse.class.isAssignableFrom(paramType))
{
return webcx.getHttpServletResponse();
}
if (ServletConfig.class.isAssignableFrom(paramType))
{
return webcx.getServletConfig();
}
if (ServletContext.class.isAssignableFrom(paramType))
{
return webcx.getServletContext();
}
if (HttpSession.class.isAssignableFrom(paramType))
{
return webcx.getSession(true);
}
return null;
}
代码示例来源:origin: infiniteautomation/ma-core-public
public Object doFilter(Object obj, Method method, Object[] params, AjaxFilterChain chain) throws Exception {
WebContext webContext = WebContextFactory.get();
if (resourceBundleDirectory != null && resourceBundleLoader == null)
resourceBundleLoader = new ResourceBundleLoader(webContext.getServletContext().getRealPath(
resourceBundleDirectory));
I18NUtils.prepareRequest(webContext.getHttpServletRequest(), localeResolverName, bundleBaseName,
resourceBundleLoader);
return chain.doFilter(obj, method, params);
}
}
代码示例来源:origin: infiniteautomation/ma-core-public
public Object doFilter(Object obj, Method method, Object[] params, AjaxFilterChain chain) throws Exception {
WebContext webContext = WebContextFactory.get();
WebApplicationContext wac = WebApplicationContextUtils.getRequiredWebApplicationContext(webContext
.getServletContext());
MessageSource messageSource = (MessageSource) wac.getBean(messageSourceKey);
JstlUtils.exposeLocalizationContext(webContext.getHttpServletRequest(), messageSource);
return chain.doFilter(obj, method, params);
}
}
代码示例来源:origin: vivo-project/Vitro
public EntityDWR(){
WebContext ctx = WebContextFactory.get();
ServletContext sc= ctx.getServletContext();
entityWADao = ModelAccess.on(sc).getWebappDaoFactory().getIndividualDao();
}
代码示例来源:origin: org.directwebremoting/dwr
String moduleName = (String) getModuleNameMethod.invoke(utils, "/", wc.getServletContext());
moduleConfig = (ModuleConfig) getModuleConfigMethod.invoke(utils, moduleName, wc.getServletContext());
moduleConfig = RequestUtils.getModuleConfig(request, wc.getServletContext());
代码示例来源:origin: org.directwebremoting/dwr
object = webcx.getServletContext().getAttribute(name);
webcx.getServletContext().setAttribute(name, object);
代码示例来源:origin: org.directwebremoting/dwr
if (webcx != null)
return webcx.getServletContext();
代码示例来源:origin: org.directwebremoting/dwr
ServletContext context = WebContextFactory.get().getServletContext();
Session session = H3SessionAjaxFilter.getCurrentSession(context);
本文整理了Java中org.directwebremoting.WebContext.getSession()方法的一些代码示例,展示了WebContext.getSession()的具体用法。这些代
本文整理了Java中org.directwebremoting.WebContext.getHttpServletResponse()方法的一些代码示例,展示了WebContext.getHttpSe
本文整理了Java中org.directwebremoting.WebContext.getHttpServletRequest()方法的一些代码示例,展示了WebContext.getHttpSer
本文整理了Java中org.directwebremoting.WebContext.getServletContext()方法的一些代码示例,展示了WebContext.getServletCont
在带有注解的 Spring MVC 中,我们使用 @Controller 标记任何 POJO。 在这个 Controller 中,我们可以使用 autowired 属性获取 WebApplicatio
我收到这个臭名昭著的错误: cannot be context relative (/) or page relative unless you implement the IWebContext 我
JOSSO 新手。我已经用 tomcat 设置了 JOSSO,并且 partnerapp 似乎工作正常。我有一个“示例”网络应用程序,我正在尝试使用 JOSSO 配置它。当我尝试访问 Web 应用程序
我正在将作为 Web 服务公开的无状态 EJB 从 JBoss7 AS 迁移到 WildFly 10(当然我有点晚了)。 网络服务过去可通过 http://localhost:8080/vmwWS/v
我正在为 Spring-Boot MVC 应用程序使用外部 Tomcat,但我无法在 application.property 文件中设置 webcontext 名称。对于内部 Tomcat,属性 s
我需要使用 JSF 显示位于 Web 应用程序部署文件夹之外的图像标签或 HTML 标签。我怎样才能实现这一目标? 最佳答案 到目前为止,它必须可以通过公共(public) URL 访问。因此,最终
我已将 Jboss 应用程序迁移到 WebSphere Liberty。我必须删除所有 Jboss 引用库。在这样做的同时,我在某些注释中面临问题。 Jboss 应用程序使用 @SecurityDom
我是一名优秀的程序员,十分优秀!