You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ This guide introduces the Kilo framework and provides an overview of its key fea
13
13
Kilo is distributed via Maven Central:
14
14
15
15
*[org.httprpc:kilo-client](https://central.sonatype.com/artifact/org.httprpc/kilo-client/versions) - includes support for consuming web services, interacting with relational databases, and working with common file formats (Java 21 or later required)
16
-
*[org.httprpc:kilo-server](https://central.sonatype.com/artifact/org.httprpc/kilo-server/versions) - depends on client; includes support for creating web services (Jakarta Servlet specification 6.1 or later required)
16
+
*[org.httprpc:kilo-server](https://central.sonatype.com/artifact/org.httprpc/kilo-server/versions) - depends on client; includes support for creating web services (Jakarta Servlet 6.1 or later required)
17
17
18
18
# Kilo Classes
19
19
Classes provided by the Kilo framework include:
@@ -115,7 +115,7 @@ The following multi-value types are also supported:
115
115
*`java.util.Set`
116
116
* array/varargs
117
117
118
-
Additionally, `java.util.Map`, bean, record, and `org.w3c.dom.Document` types are supported for [body content](#body-content). Arguments of type `jakarta.servlet.http.Part` may be used with `POST`requests submitted as [multi-part form data](https://jakarta.ee/specifications/servlet/6.1/jakarta-servlet-spec-6.1#_MultipartConfig).
118
+
Additionally, `java.util.Map`, bean, record, and `org.w3c.dom.Document` types are supported for [body content](#body-content). Arguments of type `jakarta.servlet.http.Part` may be used with `POST`handler methods annotated with `FormData`.
119
119
120
120
Unspecified values are automatically converted to `0`, `false`, or the null character for primitive types. `Date` values are decoded from a long value representing epoch time in milliseconds. Other values are parsed from their string representations.
121
121
@@ -340,7 +340,7 @@ public enum Size implements Numeric {
340
340
}
341
341
```
342
342
343
-
The `FormData` annotation can be used to indicate that a method accepts [form data](https://www.w3.org/TR/html401/interact/forms.html#h-17.13.4). Deprecated elements will be identified as such in the output.
343
+
Deprecated elements will be identified as such in the output.
344
344
345
345
A JSON version of the generated documentation can be obtained by specifying an "Accept" type of "application/json" in the request headers. The response can be used to process an API definition programatically; for example, to generate client-side stub code.
0 commit comments