* Create GreetingsController.java
add controller to test the content type being set properly or not
* add unit tests for greetings controller
* update to avoid PMD violation
* correct the file type
* Update GreetingsControllerUnitTest.java
fix some imports & correct the names
* Update GreetingsControllerUnitTest.java
update the unit case to avoid internal server error for junit
* JAVA-6253: Move image-processing to the heavy profile
* JAVA-6253: Do not start blade app automatically by a plugin
Co-authored-by: Krzysztof Woyke <krzysztof.woyke.sp@lhsystems.com>
* BAEL-4220 | A Guide to IllegalAccessError and when it happens
* BAEL-4220 | A Guide to IllegalAccessError and when it happens | fix tests
* BAEL-4220 | A Guide to IllegalAccessError and when it happens | fix tests
* BAEL-4220 | A Guide to IllegalAccessError and when it happens | BDD test names
* BAEL-4494 | .toArray(new MyClass[0]) or .toArray(new MyClass[myList.size()])?
* BAEL-4494 | .toArray(new MyClass[0]) or .toArray(new MyClass[myList.size()])?
* BAEL-4933 | Differences between static classes and the singleton pattern in Java
* BAEL-4456 | Trusting a Self-Signed Cert in OkHTTP
Co-authored-by: root <anmoldeep0123@gmail.com>
* BAEL-4464 : how to implement LRU-Cache in java codes added
* BAEL-4464 : how to implement LRU-Cache in java codes added - package named fixed
* BAEL-4464 : how to implement LRU-Cache in java codes added - package named changed
* BAEL-4464 : how to implement LRU-Cache in java codes added - unitTest fixed
* BAEL-4464 : issues 4,5 fixed.
* fixed some issues in BAEL-4464
* BAEL-4464 : some tips on unitTest fixed
* BAEL-4464 : how to implement LRU-Cache in java codes added
* BAEL-4464 : how to implement LRU-Cache in java codes added - package named fixed
* BAEL-4464 : how to implement LRU-Cache in java codes added - package named changed
* BAEL-4464 : how to implement LRU-Cache in java codes added - unitTest fixed
* BAEL-4464 : issues 4,5 fixed.
* fixed some issues in BAEL-4464
* BAEL-5004 Fixed overflow issues for Large numbers
* BAEL-5013 Test cases
* BAEL-5013 Convert to String solutions
* BAEL-5013 convert to camel case using regex
* BAEL-5004 Fixed overflow issues for Large numbers
* BAEL-5013 Convert to Camel Case using Regex
* BAEL-5013 Review changes
* BAEL5013 cleanup
* BAEL5013 review changes
* BAEL5013 continuation index to 2 spaces
* BAEL-5013 fixed test failure
* BAEL-5013 Review changes
Co-authored-by: Remy Ohajinwa <remy.ohajinwa@interswitchgroup.com>
* BAEL-4464 : how to implement LRU-Cache in java codes added
* BAEL-4464 : how to implement LRU-Cache in java codes added - package named fixed
* BAEL-4464 : how to implement LRU-Cache in java codes added - package named changed
* BAEL-4464 : how to implement LRU-Cache in java codes added - unitTest fixed
The above example only works when logging a string without using string interpolation. For example the following log statement: log.debug("This is a log from {}", "David"). This would result in event.getMessage() returning "This is a log from {}" while you would like to see the processed form "This is a log from David". The getMessage().toString() only returns the former while toString() on the event will return the latter. Furthermore the toString() method is redundant on getMessage() as it already is a string.