org.thymeleaf.standard.StandardDialect Java Examples

The following examples show how to use org.thymeleaf.standard.StandardDialect. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: NimrodDialect.java    From nimrod with MIT License 4 votes vote down vote up
protected NimrodDialect() {
    super(NAME, PREFIX, StandardDialect.PROCESSOR_PRECEDENCE);
}
 
Example #2
Source File: SecurityAuthorityElementProcessor.java    From nimrod with MIT License 4 votes vote down vote up
public SecurityAuthorityElementProcessor(String dialectPrefix) {
    super(TemplateMode.HTML, dialectPrefix, ELEMENT_NAME, true, null, false, StandardDialect.PROCESSOR_PRECEDENCE);
}
 
Example #3
Source File: ThSysDialect.java    From mayday with GNU General Public License v3.0 4 votes vote down vote up
public ThSysDialect() {
	// 设置自定义方言与"方言处理器"优先级相同
	super(DIALECT_NAME, "thSys", StandardDialect.PROCESSOR_PRECEDENCE);
}
 
Example #4
Source File: DictDialect.java    From FEBS-Security with Apache License 2.0 4 votes vote down vote up
public DictDialect() {
	super(NAME, PREFIX, StandardDialect.PROCESSOR_PRECEDENCE);
}
 
Example #5
Source File: DataAttributeDialectTest.java    From thymeleaf-extras-data-attribute with Apache License 2.0 4 votes vote down vote up
@BeforeClass
public static void configureSequence() {
	executor.setDialects(Arrays.asList(new StandardDialect(),
			new DataAttributeDialect()));
}
 
Example #6
Source File: ShiroDialect.java    From thymeleaf-extras-shiro with Apache License 2.0 4 votes vote down vote up
public ShiroDialect() {
    super(NAME, PREFIX, StandardDialect.PROCESSOR_PRECEDENCE);
}
 
Example #7
Source File: ThymeleafProcessorDialect.java    From wenku with MIT License 2 votes vote down vote up
/**
 * 
 * 创建一个新的实例 ThymeleafProcessorDialect.
 */
public ThymeleafProcessorDialect() {
    super(DIALECT_NAME, DIALECT_PREFIX, StandardDialect.PROCESSOR_PRECEDENCE);
}