Gerhard Petracek created DELTASPIKE-1062:
--------------------------------------------
Summary: @Transactional and @TransactionScoped support for
@Repository including qualifiers
Key: DELTASPIKE-1062
URL: https://issues.apache.org/jira/browse/DELTASPIKE-1062
Project: DeltaSpike
Issue Type: Improvement
Components: Data-Module
Affects Versions: 1.5.2
Reporter: Gerhard Petracek
Assignee: Gerhard Petracek
Fix For: 1.5.3
currently it's possible to use e.g.:
{code}
@Transactional
@Repository
public interface CustomRepository extends EntityRepository<ConfigEntry, String>
{
//...
}
{code}
but it should be also possible to use e.g.:
{code}
@Transactional(qualifier = MyDb.class)
@Repository
public interface CustomRepository extends EntityRepository<ConfigEntry, String>
{
//...
}
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)