Skip to content

Bean SearcherRead-only ORM focused on advanced queries

Enable "advanced" queries for your application with one line of code!

It's not a repetitive wheel
because there has never been a complex retrieval interface that simply has a single line of code.

java
@RestController
@RequestMapping("/user")
public class UserController {

    @Autowired
    private BeanSearcher beanSearcher;               // Inject the Searcher

    @GetMapping("/index")
    public SearchResult<User> index() {
        // Only one line of code, including paging, combination filtering, arbitrary field sorting, and even statistics, multi-table joint search complex search functions
        return beanSearcher.search(User.class); 
    }

}

Advertisers refuse to join the group

Released under the Apache License