hallo dilip, i have now successful started setting up the project, so far so good, now when i use groupName() in a custom docket implementation this docket does not show in the response :(
i want to list parts of the backend in the "admin" docket and another part in the "public" docket
I am working on a gwt application, which provides several language support, hence makes compile time (permutations ) huge. also i want to add new languages pack in the app while the customer is running the app.
i want to know is there a way that i can inject new language packs in the run time.
also if you know how this thing is handle in other developing environments( spring mvc or any other).
thanks in advance
http://localhost:9000/api/games?page=-1&size=20&sort=id,asc&query=asd
however my query parameter is always null. The pageable object gets sent properly. Why isn't the query being sent properly? Any ideas of what could be wrong? My code is as follows:@GetMapping("/games")
@Timed
public ResponseEntity<List<Game>> getAllGames(Pageable pageable, String query) {