Releases: codingapi/springboot-framework
Releases · codingapi/springboot-framework
v1.5.12
v1.5.10
v1.5.9
v1.5.7
v1.5.6
v1.5.5
v1.5.4
v1.5.3
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);