kitteh
A pure java web server (by msx80)
record-builder
Record builder generator for Java records (by Randgalt)
kitteh | record-builder | |
---|---|---|
3 | 36 | |
3 | 808 | |
- | 2.2% | |
2.5 | 6.3 | |
over 1 year ago | about 1 month ago | |
Java | Java | |
GNU General Public License v3.0 only | Apache License 2.0 |
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.
kitteh
Posts with mentions or reviews of kitteh.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2021-11-17.
-
Need some guidance on web frameworks for a simple project
Alternatively, you could check some micro http server, many just require a couple of lines to setup. I've even made one myself, kitteh, otherwise there plenty to choose from, spark for example is super simple.
-
When Project Loom is launched, will web servers use one virtual thread per request instead of os thread?
uhm i'll look into it when it's ready, then decide if use it on my small web server. Probably more for exploration and fun then for real need.
-
Libraries, Frameworks and Technologies you would NOT recommend
Spring boot is ok, altho i feel it only spread becouse of "spring". Small self contained http servers library existed before (they're pretty simple to make too, i did one myself), they were just not considered, in favour of big servers like tomcat etc.
record-builder
Posts with mentions or reviews of record-builder.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-04-01.
- JEP Draft: Prepare to Make Final Mean Final
-
JEP Draft – Derived Record Creation (Preview) – Java
The problem with this approach is that the people will have to build crutches like https://github.com/Randgalt/record-builder and by the time Java adds missing features all the codebases will be forever polluted with legacy workarounds that nobody will dare to remove because of backwards compatibility.
It also hinders adoption of new features as people will prefer to maintain consistency in their codebases.
-
Any library you would like to recommend to others as it helps you a lot? For me, mapstruct is one of them. Hopefully I would hear some other nice libraries I never try.
Record builder is pretty good for making builders for your Java 17 records
-
Useful & Unknown Java Libraries - Piotr's TechBlog
I always have to bring up RecordBuilder simply because of the included Withers and it being a source generator instead of the Lombok weirdness.
-
How to use Java Records
The above is not particularly user-friendly. Luckily compiler plugins can provide the missing feature, most notably RecordBuilder:
-
Named Parameters in Java
For records, instead of lombok you can use https://github.com/Randgalt/record-builder which is a valid annotation processor and will not break on JDK changes
-
has anyone written custom annotations using Lombok ?
In this particular case you can generate the builder with something like https://github.com/Randgalt/record-builder that is both valid java and lombok-like enough
-
I made a java client for the todoist api
Records + Record Builder or immutables + the trick to hide the implementing class w/sealed are your friend. Both the mutability and naming conventions this generates are vomitus.
-
"With" for records -- Brian Goetz
Did you use https://github.com/Randgalt/record-builder ?
-
What's your top Java pet peeve?
Try my annotation processor. It generates withers. https://github.com/Randgalt/record-builder
What are some alternatives?
When comparing kitteh and record-builder you can also consider the following projects:
soteria - Soteria, a Jakarta Security implementation
core - An advanced and highly optimized Java library to build frameworks: it's useful for scanning class paths, generating classes at runtime, facilitating the use of reflection, scanning the filesystem, executing stringified source code and much more...
Persistent Collection - A Persistent Java Collections Library
MapStruct - An annotation processor for generating type-safe bean mappers
Apache Shiro - Apache Shiro
javageci - Java Code Generation Framework