Paulo Lopes

Results 282 comments of Paulo Lopes

The crud handler should prefer composition to inheritance: ```java @VertxGen interface CrudHandler { static CrudHandler create(String entity); String entity(); /** * Creates a new Object in the database and asynchronously...

The final goal would be to have short snippets like this working: ```java // prepare the router router.route("/persons") // create the handler (perhaps there's no need to hold the entity...

Hi @gitSquirel can you please sign the Eclipse ECA. When you do, please do a rebase and push and we can merge your enhancement!

@tpfau You need: ```xml io.reactiverse es4x 0.17.0 ``` Perhaps I should fix that pom to require the main jar too. That dependency is just the generated code, all the vertx...

TASK: Investigate if we can add a dependency to the main jar, of if this would create a huge circular dependency problem.

@yuangu I've been also thinking of something like this for a while. Currently I think the workflow is quite tedious and does not feel natural, a user needs to do:...

@yuangu I've added the following pull request: https://github.com/reactiverse/es4x/pull/375 This will allow you later to start a project with: ``` npm init es4x-app -t ts ``` for TypeScript and without args...

I agree with some of the points. I think that as we currently can work with http modules (just like deno), the missing part is that we can't really define...

Not yet. Things get complicated when trying to support all combinations of VMs and builds. The current version creates docker containers using jlink of `adoptopenjdk` java11 images and runs on...

@BeneStem have you seen this template? https://github.com/reactiverse/es4x/blob/develop/pm/src/main/resources/META-INF/es4x-commands/Dockerfile It doesn't rely on graal images anymore, just plain openjdk and the final image runs on google distroless which makes it reasonably small....