Given the code fragment:
Which URL triggers the invocation of the getEmployee () method?
Given the code fragment:
Which URL triggers the invocation of the getEmployee () method?
The `@Path` annotation in the given code fragment specifies that the path must match the pattern "{id:[A-Z][0-9]+}". This means the URL must contain an 'id' value that starts with an uppercase letter followed by one or more digits. Therefore, the correct URL that triggers the invocation of the getEmployee() method is <base url>/Employees/J6349, making option B correct.
Answer is B.
No doubt: answer is B
correct is B
A is correct as per some other sites