![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
com.github.apavlidi:restfulQueries
Advanced tools
Develop true restful APIs by supporting pagination, filtering, selection, sorting and searching. This project helps you add these featrues to your REST Controller easily without developing custom solutions. The project is currently only compatible with Spring Boot + Spring Data MongoDB applications.
Develop true restful APIs by supporting pagination, filtering, selection, sorting and filtering. This project helps you add these features to your REST Controller easily without developing custom solutions. The project is currently only compatible with Spring Data MongoDB applications. There is a blog post here, where I describe step-by-step the implementation of this library.
For Maven-based projects, add the following to your pom.xml file. This dependency is available from the Maven Central repository.
<dependency>
<groupId>com.github.apavlidi</groupId>
<artifactId>restfulQueries</artifactId>
<version>0.0.1</version>
</dependency>
@GetMapping("/profile")
private List<Profile> getAllProfiles(@RequestParam Map <String, String> filters) {
....
}
Map<String, String> restApiQueries = collectRestApiParams(filters);
@Override
public List<Profile> getAllProfilesDemo(Map<String, String> filters) {
Query query = new Query();
applyRestApiQueries(query, restApiQueries);
return mongoTemplate.find(query, Profile.class);
}
Navigate to API Documentation for more
RestfulQueries documentation is available here.
The main purpose of this repository is provide an easy way of implementing truly restful apis by supporting the features of pagination, selection, filtering, and sorting to the developers. Development of RestfulQueries happens here on GitHub, and we are grateful to the community for contributing bugfixes and improvements.
Read the contributing guide to learn about the development process, how to propose bugfixes and improvements, and how to build and test your changes to RestfulQueries.
To help you get your feet wet and get you familiar with the contribution process, check the issues for good first issues that contain bugs or enhancements with relatively limited scope. This is a great place to get started.
Suggestions and/or improvements are welcome!
This project is licensed under the MIT License
FAQs
Develop true restful APIs by supporting pagination, filtering, selection, sorting and searching. This project helps you add these featrues to your REST Controller easily without developing custom solutions. The project is currently only compatible with Spring Boot + Spring Data MongoDB applications.
We found that com.github.apavlidi:restfulQueries demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.