{"id":37019331,"url":"https://github.com/unikueltd/thymeleaf-dialect-spring-boot-starter","last_synced_at":"2026-01-14T02:08:19.572Z","repository":{"id":248640530,"uuid":"821459698","full_name":"unikueltd/thymeleaf-dialect-spring-boot-starter","owner":"unikueltd","description":"Thymeleaf dialect for spring boot starter","archived":false,"fork":false,"pushed_at":"2025-08-20T00:08:07.000Z","size":49,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"trunk","last_synced_at":"2025-09-13T10:15:35.738Z","etag":null,"topics":["dialect","spring-boot","spring-starter","thymeleaf"],"latest_commit_sha":null,"homepage":"https://mvnrepository.com/artifact/com.yookue.springstarter/thymeleaf-dialect-spring-boot-starter","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/unikueltd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":"NOTICE.txt","maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-06-28T15:31:37.000Z","updated_at":"2025-08-20T00:08:11.000Z","dependencies_parsed_at":"2025-08-20T02:19:56.191Z","dependency_job_id":"7ac99c0c-ac08-465a-9c5d-56cc2f1406cf","html_url":"https://github.com/unikueltd/thymeleaf-dialect-spring-boot-starter","commit_stats":null,"previous_names":["yookue/thymeleaf-dialect-spring-boot-starter","unikueltd/thymeleaf-dialect-spring-boot-starter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/unikueltd/thymeleaf-dialect-spring-boot-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unikueltd%2Fthymeleaf-dialect-spring-boot-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unikueltd%2Fthymeleaf-dialect-spring-boot-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unikueltd%2Fthymeleaf-dialect-spring-boot-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unikueltd%2Fthymeleaf-dialect-spring-boot-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/unikueltd","download_url":"https://codeload.github.com/unikueltd/thymeleaf-dialect-spring-boot-starter/tar.gz/refs/heads/trunk","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unikueltd%2Fthymeleaf-dialect-spring-boot-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28408711,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T01:52:23.358Z","status":"online","status_checked_at":"2026-01-14T02:00:06.678Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dialect","spring-boot","spring-starter","thymeleaf"],"created_at":"2026-01-14T02:08:19.046Z","updated_at":"2026-01-14T02:08:19.567Z","avatar_url":"https://github.com/unikueltd.png","language":"Java","readme":"# Thymeleaf Dialect Spring Boot Starter\n\nSpring Boot application integrates `thymeleaf` dialects quickly, to boost your template development.\n\n## Quickstart\n\n- Import dependencies\n```xml\n    \u003cdependency\u003e\n        \u003cgroupId\u003ecn.unikue.springstarter\u003c/groupId\u003e\n        \u003cartifactId\u003ethymeleaf-dialect-spring-boot-starter\u003c/artifactId\u003e\n        \u003cversion\u003eLATEST\u003c/version\u003e\n    \u003c/dependency\u003e\n```\n\n\u003e By default, this starter will auto take effect, you can turn it off by `spring.thymeleaf-dialect.enabled = false`\n\n- Configure Spring Boot `application.yml` with prefix `spring.thymeleaf-dialect` (**Optional**)\n```yml\nspring:\n    thymeleaf-dialect:\n        commons-lang-dialect:\n            processor-order: 0\n        commons-rng-dialect:\n            processor-order: 0\n```\n\n- This starter creates the following dialects with their associated artifacts:\n\n| Dialect Class                | Associated Artifact                   |\n|------------------------------|---------------------------------------|\n| CommonsLangExpressionDialect | org.apache.commons:commons-lang3      |\n| CommonsRngExpressionDialect  | org.apache.commons:commons-rng-simple |\n\n- The `CommonsLangExpressionDialect` provides expressions with their associated classes as following:\n\n| Expression         | Associated Class                           |\n|--------------------|--------------------------------------------|\n| #arrayUtils        | org.apache.commons.lang3.ArrayUtils        |\n| #booleanUtils      | org.apache.commons.lang3.BooleanUtils      |\n| #charUtils         | org.apache.commons.lang3.CharUtils         |\n| #numberUtils       | org.apache.commons.lang3.math.NumberUtils  |\n| #objectUtils       | org.apache.commons.lang3.ObjectUtils       |\n| #randomStringUtils | org.apache.commons.lang3.RandomStringUtils |\n| #regexUtils        | org.apache.commons.lang3.RegExUtils        |\n| #stringUtils       | org.apache.commons.lang3.StringUtils       |\n| #systemUtils       | org.apache.commons.lang3.SystemUtils       |\n\n- The `CommonsRngExpressionDialect` provides expressions with their associated classes as following:\n\n| Expression      | Associated Class                               |\n|-----------------|------------------------------------------------|\n| #randomProvider | org.apache.commons.rng.simple.RandomSource#JDK |\n\n- Write your template code as following (take `img` as an example)\n```\n\u003cimg th:src=\"@{${'/asset/img/foobar-' + #randomProvider.nextInt(1,3) + '.png'}}\"\u003e\n```\nAh, does it look cool?\n\n## Document\n\n- Github: https://github.com/unikueltd/thymeleaf-dialect-spring-boot-starter\n- Thymeleaf github: https://github.com/thymeleaf/thymeleaf\n- Thymeleaf homepage: https://thymeleaf.org\n\n## Requirement\n\n- jdk 17+\n\n## License\n\nThis project is under the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0)\n\nSee the `NOTICE.txt` file for required notices and attributions.\n\n## Donation\n\nYou like this package? Then [donate to us](https://unikue.cn/donation) to support the development.\n\n## Copyright\n\nBeijing Unikue Network Technology Ltd.\n\n## Website\n\n- Unikue: https://unikue.cn\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funikueltd%2Fthymeleaf-dialect-spring-boot-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funikueltd%2Fthymeleaf-dialect-spring-boot-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funikueltd%2Fthymeleaf-dialect-spring-boot-starter/lists"}