From 99e65c77236de9baaf4b9b3eed2f375f2d2b1551 Mon Sep 17 00:00:00 2001 From: Tarek Oraby <42799254+tarekoraby@users.noreply.github.com> Date: Tue, 14 Nov 2023 09:35:32 +0200 Subject: [PATCH 1/2] Add note on microservice architecture --- articles/lit/start/faq.adoc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/articles/lit/start/faq.adoc b/articles/lit/start/faq.adoc index d95048a52f..c5c97ff05f 100644 --- a/articles/lit/start/faq.adoc +++ b/articles/lit/start/faq.adoc @@ -104,4 +104,7 @@ Yes. You can use standard Maven modules in your application, or even external de Hilla is developed using Java as the reference language for the backend. Hilla parses `.class` files, which can be compiled from other languages as well, but support from some features may vary depending on the language. For example, in Java, an annotation is used to mark a field as not null, while in Kotlin that's part of the language syntax. +== Does Hilla support a microservice architecture? +Yes. Hilla only requires a thin endpoint layer to communicate with the frontend. The rest of the backend can employ a microservice setup that Hilla endpoints would communicate with. See this https://hilla.dev/blog/using-microservices-from-hilla/[blog post] for more details. + // end::content[] From e87826eefae501ba1aa00d908388d617e6023129 Mon Sep 17 00:00:00 2001 From: Jouni Koivuviita Date: Tue, 14 Nov 2023 16:09:28 +0200 Subject: [PATCH 2/2] disable HeadingCase Vale rule --- articles/lit/start/faq.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/articles/lit/start/faq.adoc b/articles/lit/start/faq.adoc index c5c97ff05f..6367d683f5 100644 --- a/articles/lit/start/faq.adoc +++ b/articles/lit/start/faq.adoc @@ -8,6 +8,8 @@ order: 50 = FAQ +pass:[] + == What is Hilla? Hilla is a framework for building reactive web applications on Java backends.