当前位置: 首页>>代码示例>>Java>>正文


Java AttributeName类代码示例

本文整理汇总了Java中org.thymeleaf.engine.AttributeName的典型用法代码示例。如果您正苦于以下问题:Java AttributeName类的具体用法?Java AttributeName怎么用?Java AttributeName使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


AttributeName类属于org.thymeleaf.engine包,在下文中一共展示了AttributeName类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: doProcess

import org.thymeleaf.engine.AttributeName; //导入依赖的package包/类
protected void doProcess(final ITemplateContext context, final IProcessableElementTag tag,
		final AttributeName attributeName, final String attributeValue,
		final IElementTagStructureHandler structureHandler) {

	IStandardExpressionParser expressionParser = StandardExpressions
			.getExpressionParser(context.getConfiguration());

	IStandardExpression expression = expressionParser.parseExpression(context, attributeValue);
	Boolean enabled = (Boolean) expression.execute(context);

	if (enabled) {
		expression = expressionParser.parseExpression(context, "@{/resources/konker/images/enabled.svg}");
	} else {
		expression = expressionParser.parseExpression(context, "@{/resources/konker/images/disabled.svg}");
	}

	structureHandler.setAttribute("src", (String) expression.execute(context));
	structureHandler.setAttribute("class", (String) "enabled-img");

}
 
开发者ID:KonkerLabs,项目名称:konker-platform,代码行数:21,代码来源:EnabledImageTagProcessor.java

示例2: doProcess

import org.thymeleaf.engine.AttributeName; //导入依赖的package包/类
@Override
protected void doProcess(ITemplateContext context, IProcessableElementTag tag, AttributeName attributeName,
        String attributeValue, IElementTagStructureHandler structureHandler) {

    // Compose message with parameters:
    // {0} first reg. position
    // {1} latest page reg. position
    // {2} total elements
    // pagination.summary=Showing {0} to {1} of {2} entries

    Locale locale = context.getLocale();
    Page<?> page = PageUtils.findPage(context);
    int firstItem = PageUtils.getFirstItemInPage(page);
    int latestItem = PageUtils.getLatestItemInPage(page);
    int totalElements = (int) page.getTotalElements();
    boolean isEmpty = page.getTotalElements() == 0;

    String attrValue = String.valueOf(attributeValue).trim();
    String messageTemplate = COMPACT.equals(attrValue) ? COMPACT_MESSAGE_KEY : DEFAULT_MESSAGE_KEY;
    String messageKey = isEmpty ? NO_VALUES_MESSAGE_KEY : messageTemplate;
    String message = Messages.getMessage(BUNDLE_NAME, messageKey, locale, firstItem, latestItem, totalElements);

    structureHandler.setBody(message, false);
}
 
开发者ID:jpenren,项目名称:thymeleaf-spring-data-dialect,代码行数:25,代码来源:PaginationSummaryAttrProcessor.java

示例3: doProcess

import org.thymeleaf.engine.AttributeName; //导入依赖的package包/类
@Override
protected void doProcess(ITemplateContext context, IProcessableElementTag tag, AttributeName attributeName,
        String attributeValue, IElementTagStructureHandler structureHandler) {

    if (context instanceof WebEngineContext) {
        Object page = Expressions.evaluate(context, attributeValue);

        if (!(page instanceof Page<?>)) {
            throw new InvalidObjectParameterException(
                    "Parameter " + attributeValue + " is not an Page<?> instance!");
        }

        ((WebEngineContext) context).setVariable(Keys.PAGE_VARIABLE_KEY, page);
    }

}
 
开发者ID:jpenren,项目名称:thymeleaf-spring-data-dialect,代码行数:17,代码来源:PageObjectAttrProcessor.java

示例4: doProcess

import org.thymeleaf.engine.AttributeName; //导入依赖的package包/类
@Override
protected void doProcess(ITemplateContext context, IProcessableElementTag tag, AttributeName attributeName,
        String attributeValue, IElementTagStructureHandler structureHandler) {

    String attrValue = String.valueOf(Expressions.evaluate(context, attributeValue)).trim();
    Page<?> page = PageUtils.findPage(context);
    String url = PageUtils.createSortUrl(context, attrValue);

    // Append class to the element if sorted by this field
    Sort sort = page.getSort();
    boolean isSorted = sort != null && sort.getOrderFor(attrValue) != null;
    String clas = isSorted
            ? SORTED_PREFIX.concat(sort.getOrderFor(attrValue).getDirection().toString().toLowerCase())
            : EMPTY;

    structureHandler.setAttribute(HREF, url);
    String currentClass = tag.getAttributeValue(CLASS);
    structureHandler.setAttribute(CLASS, Strings.concat(currentClass, BLANK, clas));
}
 
开发者ID:jpenren,项目名称:thymeleaf-spring-data-dialect,代码行数:20,代码来源:PaginationSortAttrProcessor.java

示例5: doProcess

import org.thymeleaf.engine.AttributeName; //导入依赖的package包/类
@Override
protected void doProcess(ITemplateContext iTemplateContext,
                         IProcessableElementTag iProcessableElementTag,
                         AttributeName attributeName,
                         String attributeValue,
                         IElementTagStructureHandler iElementTagStructureHandler) {

    final String type = iProcessableElementTag.getAttributeValue("type");
    final String property = iProcessableElementTag.getAttributeValue("property");

    final String text = ShiroFacade.getPrincipalText(type, property);
    final String elementCompleteName = iProcessableElementTag.getElementCompleteName();

    final IModelFactory modelFactory = iTemplateContext.getModelFactory();
    final IModel model = modelFactory.createModel();

    model.add(modelFactory.createOpenElementTag(elementCompleteName));
    model.add(modelFactory.createText(HtmlEscape.escapeHtml5(text)));
    model.add(modelFactory.createCloseElementTag(elementCompleteName));

    iElementTagStructureHandler.replaceWith(model, false);
}
 
开发者ID:theborakompanioni,项目名称:thymeleaf-extras-shiro,代码行数:23,代码来源:PrincipalAttrProcessor.java

示例6: doProcess

import org.thymeleaf.engine.AttributeName; //导入依赖的package包/类
@Override
 protected void doProcess(
         final ITemplateContext context, final IProcessableElementTag tag,
         final AttributeName attributeName, final String attributeValue,
         final IElementTagStructureHandler structureHandler) {

     final IEngineConfiguration configuration = context.getConfiguration();

     /*
      * Obtain the Thymeleaf Standard Expression parser
      */
     final IStandardExpressionParser parser = StandardExpressions.getExpressionParser(configuration);

     /*
      * Parse the attribute value as a Thymeleaf Standard Expression
      */
     final IStandardExpression expression = parser.parseExpression(context, attributeValue);

     /*
      * Execute the expression just parsed
      */
     final String origurl = (String) expression.execute(context);
     StringBuilder urlBuilder = new StringBuilder(origurl);
	
 	CsrfToken token = (CsrfToken) context.getVariable("_csrf");
 	// token è null quando il csrf è stato disabilitato
 	if (token!=null) { 
 		final String tokenName = token.getParameterName();
 		final String tokenValue = token.getToken();
if (urlBuilder.lastIndexOf("?")>-1) {
	urlBuilder.append("&");
} else {
	urlBuilder.append("?");
}
urlBuilder.append(tokenName).append("=").append(tokenValue);
 	}
 	structureHandler.setAttribute("action", urlBuilder.toString());
     
 }
 
开发者ID:xtianus,项目名称:yadaframework,代码行数:40,代码来源:YadaActionUploadAttrProcessor.java

示例7: doProcess

import org.thymeleaf.engine.AttributeName; //导入依赖的package包/类
@Override
protected void doProcess(
        final ITemplateContext context, final IProcessableElementTag tag,
        final AttributeName attributeName, final String attributeValue,
        final IElementTagStructureHandler structureHandler) {

    final IEngineConfiguration configuration = context.getConfiguration();

    /*
     * Obtain the Thymeleaf Standard Expression parser
     */
    final IStandardExpressionParser parser = StandardExpressions.getExpressionParser(configuration);

    /*
     * Parse the attribute value as a Thymeleaf Standard Expression
     */
    final IStandardExpression expression = parser.parseExpression(context, attributeValue);

    /*
     * Execute the expression just parsed
     */
    final String semiurl = (String) expression.execute(context);

    String resultUrl = yadaDialectUtil.getVersionedAttributeValue(context, semiurl);

    /*
     * Set the new value into the 'href' attribute
     */
    if (resultUrl != null) {
    	structureHandler.setAttribute(ATTR_NAME, resultUrl);
    }
}
 
开发者ID:xtianus,项目名称:yadaframework,代码行数:33,代码来源:YadaSrcAttrProcessor.java

示例8: doProcess

import org.thymeleaf.engine.AttributeName; //导入依赖的package包/类
@Override
protected void doProcess(
        final ITemplateContext context, final IProcessableElementTag tag,
        final AttributeName attributeName, final String attributeValue,
        final IElementTagStructureHandler structureHandler) {

    final IEngineConfiguration configuration = context.getConfiguration();

    /*
     * Obtain the Thymeleaf Standard Expression parser
     */
    final IStandardExpressionParser parser = StandardExpressions.getExpressionParser(configuration);

    /*
     * Parse the attribute value as a Thymeleaf Standard Expression
     */
    final IStandardExpression expression = parser.parseExpression(context, attributeValue);

    /*
     * Execute the expression just parsed
     */
    final String semiurl = (String) expression.execute(context);

    String resultUrl = yadaDialectUtil.getVersionedAttributeValue(context, semiurl);

    /*
     * Set the new value into the 'href' attribute
     */
    if (resultUrl != null) {
    	structureHandler.setAttribute(ATTR_NAME, resultUrl);
    }

}
 
开发者ID:xtianus,项目名称:yadaframework,代码行数:34,代码来源:YadaHrefAttrProcessor.java

示例9: doProcess

import org.thymeleaf.engine.AttributeName; //导入依赖的package包/类
@Override
protected void doProcess(
		final ITemplateContext context, final IProcessableElementTag tag,
		final AttributeName attributeName, final String attributeValue,
		final IElementTagStructureHandler structureHandler) {
	final String[] roles = StringUtils.split(attributeValue, DELIMITER);

	if(!ShiroFacade.hasAnyRoles(roles)){
		structureHandler.removeElement();
	}
}
 
开发者ID:usydapeng,项目名称:thymeleaf3-shiro,代码行数:12,代码来源:HasAnyRolesAttributeTagProcessor.java

示例10: doProcess

import org.thymeleaf.engine.AttributeName; //导入依赖的package包/类
@Override
protected void doProcess(
		final ITemplateContext context, final IProcessableElementTag tag,
		final AttributeName attributeName, final String attributeValue,
		final IElementTagStructureHandler structureHandler) {
	final String[] permissions = StringUtils.split(attributeValue, DELIMITER);

	if(!ShiroFacade.hasAllPermissions(permissions)){
		structureHandler.removeElement();
	}
}
 
开发者ID:usydapeng,项目名称:thymeleaf3-shiro,代码行数:12,代码来源:HasPermissionAttributeTagProcessor.java

示例11: doProcess

import org.thymeleaf.engine.AttributeName; //导入依赖的package包/类
@Override
protected void doProcess(
		final ITemplateContext context, final IProcessableElementTag tag,
		final AttributeName attributeName, final String attributeValue,
		final IElementTagStructureHandler structureHandler) {
	final String[] permissions = StringUtils.split(attributeValue, DELIMITER);

	if(ShiroFacade.hasAnyPermissions(permissions)){
		structureHandler.removeElement();
	}
}
 
开发者ID:usydapeng,项目名称:thymeleaf3-shiro,代码行数:12,代码来源:lacksPermissionAttributeTagProcessor.java

示例12: doProcess

import org.thymeleaf.engine.AttributeName; //导入依赖的package包/类
@Override
protected void doProcess(
		final ITemplateContext context, final IProcessableElementTag tag,
		final AttributeName attributeName, final String attributeValue,
		final IElementTagStructureHandler structureHandler) {

	if(!ShiroFacade.isGuest()){
		structureHandler.removeElement();
	}
}
 
开发者ID:usydapeng,项目名称:thymeleaf3-shiro,代码行数:11,代码来源:GuestAttributeTagProcessor.java

示例13: doProcess

import org.thymeleaf.engine.AttributeName; //导入依赖的package包/类
@Override
protected void doProcess(
		final ITemplateContext context, final IProcessableElementTag tag,
		final AttributeName attributeName, final String attributeValue,
		final IElementTagStructureHandler structureHandler) {
	final String[] roles = StringUtils.split(attributeValue, DELIMITER);

	if(!ShiroFacade.hasAllRoles(roles)){
		structureHandler.removeElement();
	}
}
 
开发者ID:usydapeng,项目名称:thymeleaf3-shiro,代码行数:12,代码来源:HasAllRolesAttributeTagProcessor.java

示例14: doProcess

import org.thymeleaf.engine.AttributeName; //导入依赖的package包/类
@Override
protected void doProcess(
		final ITemplateContext context, final IProcessableElementTag tag,
		final AttributeName attributeName, final String attributeValue,
		final IElementTagStructureHandler structureHandler) {

	if(!ShiroFacade.isUser()){
		structureHandler.removeElement();
	}
}
 
开发者ID:usydapeng,项目名称:thymeleaf3-shiro,代码行数:11,代码来源:UserAttributeTagProcessor.java

示例15: doProcess

import org.thymeleaf.engine.AttributeName; //导入依赖的package包/类
@Override
protected void doProcess(
		final ITemplateContext context, final IProcessableElementTag tag,
		final AttributeName attributeName, final String attributeValue,
		final IElementTagStructureHandler structureHandler) {
	final String[] roles = StringUtils.split(attributeValue, DELIMITER);

	if(ShiroFacade.hasAnyRoles(roles)){
		structureHandler.removeElement();
	}
}
 
开发者ID:usydapeng,项目名称:thymeleaf3-shiro,代码行数:12,代码来源:LacksRoleAttributeTagProcessor.java


注:本文中的org.thymeleaf.engine.AttributeName类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。