- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.sun.faces.config.WebConfiguration.getInstance()
方法的一些代码示例,展示了WebConfiguration.getInstance()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WebConfiguration.getInstance()
方法的具体详情如下:
包路径:com.sun.faces.config.WebConfiguration
类名称:WebConfiguration
方法名:getInstance
[英]Return the WebConfiguration instance for this application passing the result of FacesContext.getCurrentInstance().getExternalContext() to #getInstance(javax.faces.context.ExternalContext).
[中]返回此应用程序的WebConfiguration实例,并传递FacesContext的结果。getCurrentInstance()。getExternalContext()到#getInstance(javax.faces.context.ExternalContext)。
代码示例来源:origin: com.sun.faces/jsf-impl
/**
* Constructs a new ResourceCache.
*/
public ResourceCache() {
this(WebConfiguration.getInstance());
}
代码示例来源:origin: org.glassfish/javax.faces
/**
* Constructs a new ResourceCache.
*/
public ResourceCache() {
this(WebConfiguration.getInstance());
}
代码示例来源:origin: javax.faces/jsf-impl
private WebConfiguration getWebConfig(FacesContext context) {
if (webConfig == null) {
webConfig = WebConfiguration.getInstance(context.getExternalContext());
}
return webConfig;
}
代码示例来源:origin: com.sun.faces/jsf-impl
/**
* Return the WebConfiguration instance for this application passing
* the result of FacesContext.getCurrentInstance().getExternalContext()
* to {@link #getInstance(javax.faces.context.ExternalContext)}.
* @return the WebConfiguration for this application or <code>null</code>
* if no FacesContext is available.
*/
public static WebConfiguration getInstance() {
FacesContext facesContext = FacesContext.getCurrentInstance();
return getInstance(facesContext.getExternalContext());
}
代码示例来源:origin: com.sun.faces/jsf-impl
private void init() {
WebConfiguration webconfig = WebConfiguration.getInstance();
enableMissingResourceLibraryDetection =
webconfig.isOptionEnabled(EnableMissingResourceLibraryDetection);
}
代码示例来源:origin: org.glassfish/javax.faces
/**
* Creates a new <code>AnnotationScanner</code> instance.
*
* @param sc the <code>ServletContext</code> for the application to be
* scanned
*/
public AnnotationScanner(ServletContext sc) {
super(sc);
WebConfiguration webConfig = WebConfiguration.getInstance(sc);
initializeAnnotationScanPackages(sc, webConfig);
}
代码示例来源:origin: org.glassfish/jakarta.faces
private void init() {
WebConfiguration webconfig = WebConfiguration.getInstance();
enableMissingResourceLibraryDetection =
webconfig.isOptionEnabled(EnableMissingResourceLibraryDetection);
}
代码示例来源:origin: org.glassfish/javax.faces
public ViewHandlingStrategy() {
FacesContext ctx = FacesContext.getCurrentInstance();
webConfig = WebConfiguration.getInstance(ctx.getExternalContext());
associate = ApplicationAssociate.getInstance(ctx.getExternalContext());
}
代码示例来源:origin: com.sun.faces/jsf-impl
public ViewHandlingStrategy() {
FacesContext ctx = FacesContext.getCurrentInstance();
webConfig = WebConfiguration.getInstance(ctx.getExternalContext());
associate = ApplicationAssociate.getInstance(ctx.getExternalContext());
}
代码示例来源:origin: com.sun.faces/jsf-impl
public ApplicationStateInfo() {
WebConfiguration config = WebConfiguration.getInstance();
partialStateSaving = config.isOptionEnabled(PartialStateSaving);
if (partialStateSaving) {
String[] viewIds = config.getOptionValue(FullStateSavingViewIds, ",");
fullStateViewIds = new HashSet<String>(viewIds.length, 1.0f);
fullStateViewIds.addAll(Arrays.asList(viewIds));
}
}
代码示例来源:origin: org.glassfish/jakarta.faces
public ApplicationStateInfo() {
WebConfiguration config = WebConfiguration.getInstance();
partialStateSaving = config.isOptionEnabled(PartialStateSaving);
if (partialStateSaving) {
String[] viewIds = config.getOptionValue(FullStateSavingViewIds, ",");
fullStateViewIds = new HashSet<>(viewIds.length, 1.0f);
fullStateViewIds.addAll(asList(viewIds));
}
}
代码示例来源:origin: org.glassfish/javax.faces
public LifecycleImpl(FacesContext context) {
ExternalContext extContext = context.getExternalContext();
config = WebConfiguration.getInstance(extContext);
context.getApplication().subscribeToEvent(PostConstructApplicationEvent.class,
Application.class, new PostConstructApplicationListener());
}
代码示例来源:origin: com.sun.faces/jsf-impl
public ViewHandlerImpl() {
if (logger.isLoggable(Level.FINE)) {
logger.log(Level.FINE,"Created ViewHandler instance ");
}
WebConfiguration config = WebConfiguration.getInstance();
String defaultSuffixConfig =
config.getOptionValue(WebConfiguration.WebContextInitParameter.DefaultSuffix);
Map<String, Object> appMap = FacesContext.getCurrentInstance().getExternalContext().getApplicationMap();
configuredExtensions = Util.split(appMap, defaultSuffixConfig, " ");
}
代码示例来源:origin: org.glassfish/javax.faces
@Override
public FaceletCache getFaceletCache() {
WebConfiguration webConfig = WebConfiguration.getInstance();
String refreshPeriod = webConfig.getOptionValue(WebConfiguration.WebContextInitParameter.FaceletsDefaultRefreshPeriod);
long period = Long.parseLong(refreshPeriod) * 1000;
FaceletCache<DefaultFacelet> result = new DefaultFaceletCache(period);
return result;
}
代码示例来源:origin: org.glassfish/jakarta.faces
@Override
public FaceletCache getFaceletCache() {
WebConfiguration webConfig = WebConfiguration.getInstance();
String refreshPeriod = webConfig.getOptionValue(WebConfiguration.WebContextInitParameter.FaceletsDefaultRefreshPeriod);
long period = Long.parseLong(refreshPeriod) * 1000;
FaceletCache<DefaultFacelet> result = new DefaultFaceletCache(period);
return result;
}
代码示例来源:origin: org.glassfish/javax.faces
public ClasspathResourceHelper() {
WebConfiguration webconfig = WebConfiguration.getInstance();
cacheTimestamp = webconfig.isOptionEnabled(CacheResourceModificationTimestamp);
enableMissingResourceLibraryDetection =
webconfig.isOptionEnabled(EnableMissingResourceLibraryDetection);
}
代码示例来源:origin: com.sun.faces/jsf-impl
public ClasspathResourceHelper() {
WebConfiguration webconfig = WebConfiguration.getInstance();
cacheTimestamp = webconfig.isOptionEnabled(CacheResourceModificationTimestamp);
enableMissingResourceLibraryDetection =
webconfig.isOptionEnabled(EnableMissingResourceLibraryDetection);
}
代码示例来源:origin: com.sun.faces/jsf-impl
public ResponseStateManagerImpl() {
WebConfiguration webConfig = WebConfiguration.getInstance();
String stateMode =
webConfig.getOptionValue(StateSavingMethod);
helper = ((StateManager.STATE_SAVING_METHOD_CLIENT.equalsIgnoreCase(stateMode)
? new ClientSideStateHelper()
: new ServerSideStateHelper()));
}
代码示例来源:origin: org.glassfish/javax.faces
public MultiViewHandler() {
WebConfiguration config = WebConfiguration.getInstance();
configuredExtensions = config.getConfiguredExtensions();
extensionsSet = config.isSet(WebConfiguration.WebContextInitParameter.DefaultSuffix);
vdlFactory = (ViewDeclarationLanguageFactory) FactoryFinder.getFactory(VIEW_DECLARATION_LANGUAGE_FACTORY);
protectedViews = new CopyOnWriteArraySet<>();
}
代码示例来源:origin: com.sun.faces/jsf-impl
public MultiViewHandler() {
WebConfiguration config = WebConfiguration.getInstance();
configuredExtensions = config.getConfiguredExtensions();
extensionsSet = config.isSet(WebConfiguration.WebContextInitParameter.DefaultSuffix);
vdlFactory = (ViewDeclarationLanguageFactory)
FactoryFinder.getFactory(FactoryFinder.VIEW_DECLARATION_LANGUAGE_FACTORY);
protectedViews = new CopyOnWriteArraySet<String>();
}
大家好,我正在使用 OpenCV(Python)开发人脸识别程序。我有两个文件,一个可以捕捉新用户的脸并按用户提供的名称存储它。第二个文件识别使用网络摄像头的用户。现在,我担心的是用户被正确识别,但名
一般来说,我的字体工作正常,但我偶尔会看到一些奇怪的情况,例如从另一个应用程序切换回浏览器,有时当从另一个选项卡切换回时,我的字体似乎已经卸载并正在使用后备字体。 我正在努力始终如一地复制它,当我看到
我经常在我开发的网站中嵌入 webfont (@font-face),直到今天我才遇到过重大问题。 其实我觉得line-height有很大的问题,我英文不是特别好所以我尽量用图来说明。我已经联系了 f
屏幕截图很棒,但没有呈现自定义 @font-face 字体。是否有可能纠正这一点? 最佳答案 在做了一些研究之后,我发现了这个 http://code.google.com/p/phantomjs/i
所以我有一个字体,我最近在几个网站上使用了它,叫做 Kondolar。这是一种可爱的字体,我实际上使用了 4 种字体粗细,所以在我的样式表中实际上有 4 个 @font-face 定义,每个定义都有自
非常感谢:)请找到完整的代码 导入boto3 s3_client = boto3.client('s3', aws_access_key_id='xxxxxxxxxxxxxxx', aws_secre
这不是以下的骗局:Can we test Face ID in simulator? 我想知道如何测试用户何时接受下面的 Face ID 警告,上面写着“你想允许“应用程序”使用 Face ID”,然
我需要检测 iPhone 朝向哪个方向,以便在掉落时从无障碍摄像头(正面或背面)进行录制。 这将在紧急情况下使用,手机掉落或放置在事件摄像头没有记录任何有值(value)内容的情况下。 我可以使用什么
我有一个需要 Trade Gothic 的网站。我想知道将 @font-face 或 cufon 与看起来类似于 Trade Gothic 的字体一起使用还是只是使用图像路线是更好的做法。显然,使用图
我在使用 Microsoft Face API 时遇到问题。以下是我的示例请求: curl -v -X POST "https://westus.api.cognitive.microsoft.com
我有一个在图像上运行并识别人脸并返回如下列表的脚本: [('Mike', (142, 464, 365, 241)),('Garry', (42, 364, 65, 141)),('unknown',
我有一个网络服务,可以重写 css 文件中的 url,以便可以通过 CDN 提供它们。 css 文件可以包含图像或字体的 url。 我目前有以下正则表达式来匹配 css 文件中的所有 url: (ur
我在乱用 @font-face 并且得到了一些奇怪的结果。我下载并安装了字体,它像它应该的那样安装在/Users/myuser/Library/Fonts 中(我想!?)。奇怪的是,无论我在 CSS
JSF 2 的 Mojarra 实现具有以下上下文参数: com.sun.faces.numberOfViewsInSession(默认为 15) com.sun.faces.numberOfLogi
jsf-api.jar 包含各种本地化的 Messages.properties 文件,这些文件一方面包含 javax.faces.component.UIInput.CONVERSION 键,另一方
谁能介绍一下 Liferay Faces 和 JSF 连接。就像我无法理解 Liferay 人脸在以下场景中的作用。 JSF ----> Model View Controller Spr
我正在尝试使用我的字体的“较轻”版本,但在 firefox 和 chrome 中它仍然显示为“正常”粗细。 这是我的 font.css: @font-face { font-family: Aveni
尝试访问应用程序时出现以下JavaScript错误。 Uncaught SyntaxError: Unexpected token 和的正常运行是必需的)。 您可能已经知道HTML文档通常通常以<和J
在我的应用程序中,我想对 UIImage 使用人脸检测,所以我使用库中的 CoreImage 构建(我知道 Vision Library 也是最新的人脸检测库。但它仅支持 ios 11.0 及以上)。
我需要从 Stylus 获得以下 CSS 输出(这是一种落后的方式,但 Stylus 将使该元素的许多其他部分变得更容易)。我已经尝试了很多东西,但无法编译,当它说它已经编译时,这部分输出没有任何显示
我是一名优秀的程序员,十分优秀!