How to set isolation level to uncommitted read

Hi,
when a user opens a screen for a table and keeps the session open in the browser,
the underlying table is locked for backend processes.
Using the uncommitted read isolation level will solve this issue.

I went through the docs, but could not find the information,
how to set the isolation level in a standard browse screen.

Is there a way to do that on a central place?
Or how to handle that in JMIX apps?

Regards Roland

Why You think so ? Jmix not single user/session framework. So what dont work ?

… and produce some others.

Maybe extendin of the JpaTransactionManager do the trick.

Or try to load data for screen component manually in onBeforeShow thou service method marked with @Transactional(isolation=Isolation.READ_UNCOMMITED)

1 Like

This is certainly not a result of reading data for a standard entity browser screen.