Nicolas Dos Santos

Results 8 comments of Nicolas Dos Santos

I noticed a problem when instantiating GeoApiContext.Builder. I want to use my own RequestHandler.Builder. So I used the `GeoApiContext.Builder.requestHandlerBuilder(RequestHandler.Builder)` method: ``` try (GeoApiContext context = new GeoApiContext.Builder() .apiKey(apiKey) .requestHandlerBuilder(new MyRequestHandler.Builder())...

Querydsl supports one Entity join for one query: https://github.com/querydsl/querydsl/issues/113 https://github.com/spring-projects/spring-data-mongodb/issues/1294 But it doesn't support multiple Entity joins for one query: https://github.com/querydsl/querydsl/issues/232

I had the same problem. I overrided IfHelper, UnlessHelper and WithHelper and I used my own HelperUtils class. ``` public final class HelperUtils { private HelperUtils() { } public static...

@ennioVisco , I updated nuxt.config.ts with your solution but it doesn't work 😞 Here is the example: https://stackblitz.com/edit/nuxt-testing-api-cncbwx?file=nuxt.config.ts

I went to your stackblitz project and there is always an issue: ![image](https://user-images.githubusercontent.com/1423193/211590804-9be27e35-126e-41c7-804d-bfef612e06e3.png) I downloaded your project and I also tested it on my Windows PC, and I always get...

Hi @andriishin I tried the configuration you shared and I have the files that are generated in the `src/main/java` directory. Here is the content of my pom.xml file: ``` 4.0.0...