Phillip Krüger

Results 250 comments of Phillip Krüger
trafficstars

Why can you not get quarkus to serve static files ? It should work like described in the documentation. What error do you get ?

Please can you share a reproducer app ?

Ok so this is working for me. You have a lot of places where you have an index.html. The one that works is in `/static` (on the same level as...

That is because your index.html is empty. But it returns fine (200 OK). Try adding some html markup to the file

So you want to have a directory listing rather than the rendered html. I am not sure how this can be done. @cescoffier can this be done with vertx-http extension...

If you use JPA and lazy loading that should already be enough for the important cases. I'll do a blog post about that soon. For a single table, doing select...

When the returned rows is more than 10000 then you probably want to look at paging (the rows) rather than limiting the cols. That can be done at the moment...

Hi @Dunmord I can not talk on the AWS or API Gateway side of things. But from a GraphQL Perspective - For normal RBAC you do not need to inspect...

Hi @Dunmord W.r.t the token, you should not need OIDC in your case, but maybe just JWT, or even just smallrye-jwt (see https://quarkus.io/guides/security-jwt#add-smallrye-jwt). @sberyozkin can help here. Maybe this will...