You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2019/11/08 11:23:16 UTC

[GitHub] [camel-quarkus] davsclaus opened a new issue #382: rest-platform

davsclaus opened a new issue #382: rest-platform
URL: https://github.com/apache/camel-quarkus/issues/382
 
 
   I wonder if its in the rest-platform that we dont support rest-dsl with path placeholders
   
   ```
   @ApplicationScoped
   public class MyCamel extends RouteBuilder {
   
       @Override
       public void configure() throws Exception {
           rest("/camel/").produces("text/plain")
               .get("{id}").to("bean:myBean");
       }
   }
   ```
   
   You can then not do localhost:8080/camel/123
   
   This works in regular Camel

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services