# jxrest **Repository Path**: codes_test/jxrest ## Basic Information - **Project Name**: jxrest - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-02-27 - **Last Updated**: 2025-02-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### Overview jxrest is a simple, lightweight framework to enable really fast development of JSON-based REST API. Let's see how simple to write a REST API: ``` import com.itranswarp.jxrest.GET import com.itranswarp.jxrest.Path class MyRestApi { @GET @Path("/hello/:name") String hello(String name) { return "Hello, " + name + "!"; } } ``` That's all! jxrest convert your method to a REST API by simply add two annotations: * @GET: Indicate this is a GET request; * @Path: The API request path, variables can be included. Using built-in RestApiFilter or RestApiServlet to deploy your API to a JavaEE-compatible server. Please check [documentation](http://jxrest.itranswarp.com) for more information.