本文整理汇总了Java中de.agilecoders.wicket.webjars.WicketWebjars类的典型用法代码示例。如果您正苦于以下问题:Java WicketWebjars类的具体用法?Java WicketWebjars怎么用?Java WicketWebjars使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
WicketWebjars类属于de.agilecoders.wicket.webjars包,在下文中一共展示了WicketWebjars类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: initBootstrap
import de.agilecoders.wicket.webjars.WicketWebjars; //导入依赖的package包/类
protected void initBootstrap()
{
LessCompilerConfigurationFactory lessConfigFactory = () -> {
Configuration lessConfig = new Configuration();
lessConfig.setCompressing(
RuntimeConfigurationType.DEPLOYMENT.equals(getConfigurationType()));
return lessConfig;
};
WicketWebjars.install(this);
BootstrapLess.install(this, lessConfigFactory);
Bootstrap.install(this);
IBootstrapSettings settings = Bootstrap.getSettings(this);
settings.setCssResourceReference(CustomBootstrapLessReference.get());
}
开发者ID:webanno,项目名称:webanno,代码行数:17,代码来源:WicketApplicationBase.java
示例2: install
import de.agilecoders.wicket.webjars.WicketWebjars; //导入依赖的package包/类
/**
* Install Leaflet with given settings to application.
* If application already has Leaflet installed, it ignores new settings.
*
* @param application application, which Leaflet should be bounded to.
* @param settings custom settings, which are used to initialized library
* @throws IllegalArgumentException if application is {@code null}.
*/
public static void install(WebApplication application, LeafletSettings settings) {
// install Leaflet.js with given configuration
Args.notNull(application, "application");
if (application.getMetaData(LEAFLET_SETTINGS_KEY) == null) {
LeafletSettings settingsOrDefault = settings != null ? settings : new DefaultLeafletSettings();
application.setMetaData(LEAFLET_SETTINGS_KEY, settingsOrDefault);
if (settingsOrDefault.autoAppendResources()) {
application.getComponentInstantiationListeners().add(new LeafletResourceAppender());
}
if (settingsOrDefault.useWebJars()) {
WicketWebjars.install(application);
}
}
}
开发者ID:DrunkenPandaFans,项目名称:wicket-leaflet,代码行数:26,代码来源:Leaflet.java
示例3: init
import de.agilecoders.wicket.webjars.WicketWebjars; //导入依赖的package包/类
/**
* @see org.apache.wicket.Application#init()
*/
@Override
public void init()
{
super.init();
WicketWebjars.install(this);
Bootstrap.install(this);
// add your configuration here
}
开发者ID:haris44,项目名称:Wicket-PDF,代码行数:12,代码来源:WicketApplication.java
示例4: init
import de.agilecoders.wicket.webjars.WicketWebjars; //导入依赖的package包/类
@Override
public void init(WebApplication webApplication) {
WebjarsSettings settings = new WebjarsSettings();
WicketWebjars.install(webApplication, settings);
wicketEndpointRepository.add(new WicketAutoConfig.Builder(this.getClass())
.withDetail("properties", props)
.build());
}
开发者ID:MarcGiffing,项目名称:wicket-spring-boot,代码行数:11,代码来源:WebjarsConfig.java
示例5: install
import de.agilecoders.wicket.webjars.WicketWebjars; //导入依赖的package包/类
/**
* installs given settings on given application
*
* @param application the application to add the settings to
* @param settings the settings to add
*/
public static void install(final WebApplication application, IClientSideLoggingSettings settings) {
Args.notNull(application, "application");
if (settings(application) == null) {
WicketWebjars.install(application);
if(settings == null) {
settings = new ClientSideLoggingSettings();
}
application.setMetaData(METADATA_KEY, settings);
}
}
开发者ID:l0rdn1kk0n,项目名称:wicket-clientside-logging,代码行数:20,代码来源:ClientSideLogging.java
示例6: init
import de.agilecoders.wicket.webjars.WicketWebjars; //导入依赖的package包/类
/**
* Define application settings
*/
@Override
protected void init() {
if (logger.isDebugEnabled()) {
logger.debug("Wicket application init (configurationType:[{}])", getConfigurationType());
}
defineSpringInjector();
if (!RuntimeConfigurationType.DEVELOPMENT.equals(getConfigurationType())) {
// change default error/timeout pages in production mode
//defineErrorPage();
// remove "wicket:id" from html generated code in production mode
getMarkupSettings().setStripWicketTags(true);
} else {
setupDevelopmentSettings();
}
//TODO Remove
// getDebugSettings().setAjaxDebugModeEnabled(true);
IApplicationSettings settings = getApplicationSettings();
// https://cwiki.apache.org/WICKET/error-pages-and-feedback-messages.html
settings.setInternalErrorPage(UnknownExceptionPage.class);
// settings.setAccessDeniedPage();
// settings.setPageExpiredErrorPage();
getRequestCycleListeners().add(new ExecutionHandlerRequestCycle(this, new WebPageBaseFactory()));
//TODO : Not available in Wicket 1.5 because it's enabled by default. Why was it disabled?
// getPageSettings().setAutomaticMultiWindowSupport(false);
//will encrypt/decrypt the URLs generated by the inner one
IRequestMapper cryptoMapper = new CryptoMapper(getRootRequestMapper(), this);
setRootRequestMapper(cryptoMapper);
// ICryptFactory jasyptCryptFactory = new JasyptCryptFactory(urlEncryptor);
// getSecuritySettings().setCryptFactory(jasyptCryptFactory);
mountBookmarks();
// https://cwiki.apache.org/WICKET/request-mapping.html
// https://issues.apache.org/jira/browse/WICKET-4488
// URL with a previous page version ignores requested page based on mount path
// http://apache-wicket.1842946.n4.nabble.com/I-don-t-want-url-page-count-parameter-localhost-8080-context-0-td4481510i40.html
super.init();
WicketWebjars.install(this);
new BeanValidationConfiguration().configure(this);
// For VMWare SDK logging (vCloud API)
// call only once during initialization time of your application
// Do not work (NPE on undeploy)
// SLF4JBridgeHandler.install();
}
开发者ID:orange-cloudfoundry,项目名称:elpaaso-core,代码行数:49,代码来源:WicketApplication.java
注:本文中的de.agilecoders.wicket.webjars.WicketWebjars类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论