You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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);