liushangqing9803 commented on issue #19319:
URL:
https://github.com/apache/shardingsphere/issues/19319#issuecomment-1188811927
```
@Service
public class StatusServiceImpl implements StatusService {
//not used @Transactional , When this method is executed, the updated
stusdent data cannot be seen
@Override
public Long update(Status status) {
return studentsMapper.update(status);
}
//used @Transactional , normal execution
@Override
@Transactional
public Long updateT(Status status) {
return studentsMapper.update(status);
}
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]