]
Michael Musgrove updated JBTM-3161:
-----------------------------------
Status: Resolved (was: Pull Request Sent)
Resolution: Done
Nested LRA doesn't start in the Spring Boot + JAX-RS application
----------------------------------------------------------------
Key: JBTM-3161
URL:
https://issues.jboss.org/browse/JBTM-3161
Project: JBoss Transaction Manager
Issue Type: Feature Request
Components: LRA
Affects Versions: 5.9.8.Final
Reporter: Matej Kralik
Assignee: Michael Musgrove
Priority: Critical
Fix For: 5.next
Attachments: flight_5.9.6.zip, flight_5.9.8.zip, flight_5.9.8_working.zip
For demonstrating purpose, I migrated flight service from [narayana
quickstart|https://github.com/jbosstm/quickstart/tree/master/rts/lra/flig...] to
the Spring Boot application and uploaded it to the attachment.
When I stop debugger in the original swarm flight service (FlightParticipant [line
64|https://github.com/jbosstm/quickstart/blob/3b848517086c2abc32bff6895b2...]),
the *_@HeaderParam(LRA_HTTP_CONTEXT_HEADER) String lraId_*, is new for that service. When
I stop debugger in the SpringBoot+JAX-RS, the lraId is the same as for a parent. It looks
that the _ServerLRAFilter_ doesn't start the new LRA.
I add a breakpoint to the *_ServerLRAFilter.filter(...)_* to see when the filter is
applied and create new LRA before the JAX-RS method. When I call original swarm flight
service, the filter is used however when I call SpringBoot flight service, the filter is
not used so it looks that the filter is not used at all in the SpringBoot+JAX-RS
application.