Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add unit test for Java code completion in text blocks #955

Open
davsclaus opened this issue Nov 15, 2023 · 1 comment
Open

Add unit test for Java code completion in text blocks #955

davsclaus opened this issue Nov 15, 2023 · 1 comment

Comments

@davsclaus
Copy link
Collaborator

davsclaus commented Nov 15, 2023

The Java DSL (In Camel 4.2 onwards) now supports String text-blocks when defining Camel URIs, as shown:

from("""debezium-postgres:customerEvents
        ?databasePassword={{myPassword}}
        &databaseDbname=myDB
        &databaseHostname=myHost
        &pollIntervalMs=2000
        &queryFetchSize=100""")
    .to("kafka:cheese");
@davsclaus davsclaus added this to the 1.2.0 milestone Nov 15, 2023
@davsclaus
Copy link
Collaborator Author

Okay so this is harder to implement as the endpoint URI completion is based on a single line (or concat strings). A text block is harder for the old logic to handle

@davsclaus davsclaus modified the milestones: 1.2.0, 1.2.1 Nov 15, 2023
@davsclaus davsclaus modified the milestones: 1.2.1, 1.2.2 Jan 17, 2024
@davsclaus davsclaus modified the milestones: 1.2.3, 1.2.4 Feb 21, 2024
@davsclaus davsclaus removed this from the 1.2.4 milestone Mar 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant