Jignesh Patel

Ranch Hand
+ Follow
since Nov 03, 2001
Jignesh likes ...
Mac
Merit badge: grant badges
Biography
More then 12 years of experience in software engineering industry.
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
3
Received in last 30 days
0
Total given
5
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Jignesh Patel

Ben
What is the difference between part 1 and part 2?
Does all examples are based on gradle or maven?
9 months ago
It does works after adding following



but then it gives following error:
Cannot start a JTA transaction from the IO thread.
11 months ago
We have a following code using Java 17 and quarkus
@Incoming("requests")
   @Outgoing("billingdata")
   @Blocking
   public void process(String jsonDataReceive) {
       LOG.info("Receive JSON ::"+jsonDataReceive);
       LOG.info("Quote Request::"+jsonDataReceive);
       service.process(jsonDataReceive);
   }

However, this code is not able to handle  multiple requests(More Data) at the same time and looses the connection with kafka. What will be possible solution
11 months ago
how to handle private method which is called inside the testing method? In your book there is a section which mention that there is nothing wrong in private fields and methods so that is very encoring.
1 year ago
Thank you very much for all these information. Just purchased one.
Wondering if there is maven based configuration provided?
1 year ago

Michał Płachta wrote:
In short, you invert the control by passing a function to a function.



Interesting thinking!!! Another good reason to purchase the book. As this concept requires a bit of study with the clear head.
1 year ago
How we can experience inversion of control in context of functional programming?
1 year ago
The book references SPARQL query language.That is a new term to me? What is that? How it is useful in functional programming
1 year ago
Micheal
I am coming from Java background, so I find the following topic very interesting:

"Designing with functions and types instead of objects"


can you elaborate more that what is being covered for this.
1 year ago
so the book is not depend on specific language.
1 year ago
I am hoping there must be a nice explanation about how to avoid concurrentmodificationexception?
1 year ago
This is an interesting discussion. If there is a plan to write a book on spring, how about quarkus? Will you guys wait for few years to see if quarkus adopted to main stream. I know recently Netflix started using quarkus.
1 year ago
I just glanced the initial content, one of the interesting thing to learn that compiler only makes a no argument constructor if no constructor(with or without argument) is supplied.
1 year ago
I would appreciate if authors can provide more insights on what is covered in following chapter?
Chapter 9. Life and Death of an Object: Constructors and Garbage Collection
1 year ago