jatl
JATL : Java Anti-Template Language (by agentgt)
jstachio
Java type safe statically compiled mustache (by jstachio)
jatl | jstachio | |
---|---|---|
5 | 28 | |
45 | 273 | |
- | 4.0% | |
0.0 | 7.8 | |
almost 3 years ago | about 1 month ago | |
Java | Java | |
Apache License 2.0 | BSD 3-clause "New" or "Revised" License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
jatl
Posts with mentions or reviews of jatl.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-07-12.
-
Full stack web development in a single Java file: An intro to Javalin and htmx
As the author of a very similar ancient library (JATL) to j2html I strongly discourage this approach. I base this on decades of experience of generating HTML from Java.
- DSL for generating HTML in Java
- j2html is looking for a maintainer
- Revisiting Html in Java
-
Readable Regex v0.3.0 released! I would appreciate your feedback
For example: https://github.com/agentgt/jatl/blob/master/src/main/java/com/googlecode/jatl/MarkupBuilder.java
jstachio
Posts with mentions or reviews of jstachio.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-06-20.
-
Java string interpolation feature was cancelled
/ Generated By:JavaCC: Do not edit this line. QueryParser.java */
I'm not claiming you're not going to see properties written out. I'm just saying that's not the majority of code you're going to see and to claim that idiomatic Java is all getters and setters is a bit far fetched.
Here is what I would consider modern idiomatic Java, immutable records and immutable classes that may expose some of their state:
https://github.com/jstachio/jstachio/blob/main/compiler/apt/...
-
Full stack web development in a single Java file: An intro to Javalin and htmx
Anyway it was one of the reasons we (my company) went with Mustache and why I wrote JStachio.
-
HTML template languages?
I don't know Dart that well (only experimented with simple apps) and just kind of lurk on this sub but I am the author of a HTML templating language (Mustache) in Java that uses annotations and code generation: https://github.com/jstachio/jstachio
- Show HN: JStachio a type-safe Mustache engine that is incredible fast
-
Feedback on a new annotation processor api
Things like this https://github.com/jstachio/jstachio (author) would not be possibly with just an include like preprocessor.
- Interpolating Strings Like a King in Java 21
-
Hey guys, just wanted to let you know that JStachio v0.9.0 is now out and it even comes with Spring support! So go ahead and give it a try if you're into that kind of thing!
Hey guys, wanted to share my project JStachio with you all. It's a java templating engine that's like Mustache.java and Handlebars.java in syntax but also compile time type safe like JTE, Rocker, and Qute.
-
Introducing Bld: A New Pure Java Build System
On a related note I have been really liking the newer Java feature of being able to execute .java files directly. I have been using them frequently to execute what would normally be a Bash or Python script. I actually have a Java .java script that mimics some parts of the Maven release plugin and because Java speaks XML really well it was easier to implement it in Java than Bash or some other scripting language which makes me think /u/bowbahdoe point on including a JSON parser with the standard lib would be very useful.
-
Modern frontends using Spring Boot and Thymeleaf (yes, modern, you read it right, as in SPA)
I plan on releasing an unpoly (htmx like library) petclinic using my templating library https://github.com/jstachio/jstachio (superior to thymeleaf but I’m biased) and some avaje + Jooby. Hopefully next month.
-
What's the point of autogenerating DTOs from entities?
But going back to they can generate whatever they want they could even make an expression or template language that is type safe (and I know this is possible as an author of such a library).