When in the same sitebricks service class
@At("/r/address/streets") @Service
have two services like :
@At("/search") @Post
@At("/:id") @Delete
The client gets 404 r/address/streets/search not found But there should not have problems for separation between both URLs, because two different HTTP methods.
If use:
@At("/search") @Post
@At("/delete/:id") @Delete
everything works fine