Luke-hbk opened a new pull request, #8936:
URL: https://github.com/apache/camel/pull/8936

   [camel-bean] 
   Problem when parameter type of bean method is String.
   Problems with more than 2 parameters.
   
   Expression to evaluate the bean parameter parameters and provide the correct 
values when the method is invoked.
   
   There are several problems:
   1. There is a problem with quotes being removed in the splitSafeQuote method 
used inside the evaluate method.
      splitSafeQuote("'Camel', 'Test'", ",", true)  -> ["Camel","Test"]   
   2. The quote is removed and false is returned from the isValidParameterValue 
method. 
      isValidParameterValue("Camel") -> return false
   3. When “ClassLoader” is working which make thread blocked it caused by Disk 
I/O.
      So it behavior make that performance deteriorates.
   
   This PR also adds TestCase.
   
   
   
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to