I am developing a jira service to store records in ao table . My table is created just fine but when I am trying to execute below code in service I get this exception
invoking ActiveObjects before <ao> configuration module is enabled or plugin is missing an <ao> configuration module. Note that scanning of entities from the ao.model package is no longer supported
ao.executeInTransaction(new TransactionCallback<Cust>(){
@Override
public Cust doInTransaction()
{
log.info("Pushing Customer : " + customerName);
final Cust customer = ao.create(Cust.class);
customer.setCustomerEmail(customerEmail);
customer.save();
log.info("Saved Customer : " + customerName);
return customer;
}
});
Does ao works in service module ? If so is there any thing additional required .
I have added entity in atlassian-plugin.xml .
I have managed to resolve this using https://www.j-tricks.com/tutorials/active-objects-injection. Looks like only plan C works inside a service.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.