If I have a transactionally managed class, in which I have two methods e.g
void OuterMethod(Data somedata)
{
this.InnerMethod(somedata)
}
@Transactional("mymanager")
void InnerMethod(Data somedata)
{
//writes some things
}
is this valid? I can't get it to write to the database for some reason, although it doesn't give me any errors.