-
Type:
Bug
-
Status: Resolved
-
Priority:
Major
-
Resolution: Duplicate
-
Affects Version/s: 1.1.3.RELEASE
-
Fix Version/s: 1.1.4.RELEASE
-
Component/s: None
-
Labels:None
-
Environment:STS 2.6.0.RELEASE
DBSystem: Mysql
public static TypedQuery<Controlway> Controlway.findControlwaysByGroups(Set<Controlgroup> groups) {
if (groups == null) throw new IllegalArgumentException("The groups argument is required");
EntityManager em = Controlway.entityManager();
StringBuilder queryBuilder = new StringBuilder("SELECT o FROM Controlway AS o WHERE");
for (int i = 0; i < groups.size(); i++)
TypedQuery<Controlway> q = em.createQuery(queryBuilder.toString(), Controlway.class);
int groupsIndex = 0;
for (Controlgroup _controlgroup: groups)
return q;
}
If I start the Roo shell it will override my changes and this is very annoying
- duplicates
-
ROO-2359 Finder AspectJ MEMBER OF select statement format incorrect
-
- Resolved
-