我正在使用openjpa,并且当负载增加时,我正在获得用户事务失败。 我的Persistence.xml如下所示,我给出了openjpa.ConnectionRetainMode = always 有什么办法可以在使用persistence.xml中增加超时时间
select p.*, lp.*
from product p join
((select model, type, price
from laptop
) union all
(select model, type, price
from printer
)
) lp
on lp.model = p.model and lp.type = p.type;