Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Hypersistence Utils | 1,926 | 3 days ago | 36 | apache-2.0 | Java | |||||
The Hypersistence Utils library (previously known as Hibernate Types) gives you Spring and Hibernate utilities that can help you get the most out of your data access layer. | ||||||||||
Funiture | 1,838 | 2 months ago | 20 | Java | ||||||
github: https://github.com/kanwangzjm/funiture, spring项目,权限管理、系统监控、定时任务动态调整、qps限制、sql监控(邮件)、验证码服务、短链接服务、动态配置等 | ||||||||||
Gs Rest Service | 1,238 | 25 days ago | 21 | apache-2.0 | Java | |||||
Building a RESTful Web Service :: Learn how to create a RESTful web service with Spring. | ||||||||||
Jsonrpc4j | 983 | 199 | 23 | 2 months ago | 17 | January 27, 2021 | 83 | mit | Java | |
JSON-RPC for Java | ||||||||||
Elide | 933 | 17 | 12 | 6 days ago | 197 | June 11, 2022 | 86 | other | Java | |
Elide is a Java library that lets you stand up a GraphQL/JSON-API web service with minimal effort. | ||||||||||
Swagger2word | 906 | 2 years ago | 32 | apache-2.0 | Java | |||||
一个Swagger API 文档 转 Word 文档的工具项目 | ||||||||||
Problem Spring Web | 901 | 2,422 | 21 | 4 days ago | 42 | November 09, 2021 | 39 | mit | Java | |
A library for handling Problems in Spring Web MVC | ||||||||||
Jwt Angular Spring | 355 | 6 years ago | 1 | mit | Java | |||||
JSON Web Token example that integrates both a Spring backend with an AngularJS frontend. | ||||||||||
Javawiki | 350 | 4 years ago | 1 | HTML | ||||||
不定期收集与JAVA有关书籍或文章 | ||||||||||
Hiauth | 304 | a month ago | 2 | mit | TypeScript | |||||
HiAuth是一个开源的基于Oauth2协议的认证、授权系统。 |
A REST API that fetches data as JSON from some given link using Spring Boot.
In this repo, a simple spring boot API is designed that fetches data from a link, accepts it in JSON format, and prints it to the web browser. A controller is there that uses an instance of REST Template through which we call a function getForEntity() [ restTemplete.getForEntity("https://jsonplaceholder.typicode.com/todos/1", User.class); ] and it accepts two following parameters.
The model contains all the required attributes and getters & setters methods that our link will send to it.
Finally, the application sends the values to the browser.