Solved

@Transactional(timeout=60) Public Class ClientServiceImpl Implements ClientService { @Transactional(timeout=30) Public Void

Question 38

Multiple Choice

@Transactional(timeout=60) public class ClientServiceImpl implements ClientService { @Transactional(timeout=30) public void update1() {} } What timeout setting is applied to the timeout inside the update1 method? (Select one)


A) 60
B) 30
C) This will not compile. Attributes such as timeout, propagation and isolation cannot be declared at the class level
D) This will not compile. Attributes such as timeout, propagation and isolation cannot be declared at the method level

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions