Class QuteConfig

    • Field Detail

      • suffixes

        @ConfigItem(defaultValue="qute.html,qute.txt,html,txt")
        public List<String> suffixes
        The list of suffixes used when attempting to locate a template file. By default, `engine.getTemplate("foo")` would result in several lookups: `foo`, `foo.html`, `foo.txt`, etc.
      • typeCheckExcludes

        @ConfigItem
        public Optional<List<String>> typeCheckExcludes
        The list of exclude rules used to intentionally ignore some parts of an expression when performing type-safe validation.

        An element value must have at least two parts separated by dot. The last part is used to match the property/method name. The prepended parts are used to match the class name. The value * can be used to match any name.

        Examples:

        • org.acme.Foo.name - exclude the property/method name on the org.acme.Foo class
        • org.acme.Foo.* - exclude any property/method on the org.acme.Foo class
        • *.age - exlude the property/method age on any class
    • Constructor Detail

      • QuteConfig

        public QuteConfig()