Skip to content

v1.5.3

Compare
Choose a tag to compare
@xlorne xlorne released this 14 Feb 15:14
· 690 commits to main since this release
20fabd3

data-fast support spring framework advisors

  • FastMapping support other advisors,examples @PreAuthorize
    @PreAuthorize(value = "hasRole('ROLE_ADMIN')")
    @FastMapping(
            method = RequestMethod.GET,
            mapping = "/api/demo/findByName1",
            value = "select d from DemoEntity d where name = :name",
            countQuery = "select count(d) from DemoEntity d where name = :name")
    MultiResponse<DemoEntity> findByName1(DemoDTO.DemoQuery query);