-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
bugSomething isn't workingSomething isn't working
Description
- Define classes with @onetomany and @manytoone
public class UserCart {
...
@NotNull
@OneToMany(mappedBy = "userCart", fetch = FetchType.LAZY)
public List<Product> products;
}public class Product implements SimpleBean {
...
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "user_cart_id")
public UserCart userCart;
}- Add configuration: db.default.eclipselink.weaving=true/static
- Add -javaagent:eclipselink.jar to JVM command line to enable Dynamic Weaving
When ACT startup, it still displays the warning
Reverting the lazy setting on the OneToOne or ManyToOne attribute [userCart] for the entity class [class Product] since weaving was not enabled or did not occur.
Could ACT support eclipselink weaving now?
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working