small fixes to @Find and @HQL methods
don't include session parameter type where not necessary
This commit is contained in:
parent
dfdf49dfa6
commit
2e360027b5
|
@ -88,28 +88,37 @@ public abstract class AbstractFinderMethod extends AbstractQueryMethod {
|
|||
.append("{@link ")
|
||||
.append(annotationMetaEntity.importType(entity))
|
||||
.append("} by ");
|
||||
int paramCount = paramNames.size();
|
||||
for (int i = 0; i < paramCount; i++) {
|
||||
String param = paramNames.get(i);
|
||||
if ( i>0 ) {
|
||||
if ( i + 1 == paramCount) {
|
||||
declaration
|
||||
.append(paramCount>2 ? ", and " : " and "); //Oxford comma
|
||||
}
|
||||
else {
|
||||
declaration
|
||||
.append(", ");
|
||||
long paramCount = paramTypes.stream()
|
||||
.filter(type -> !isOrderParam(type) && !isPageParam(type)
|
||||
&& !isSessionParameter(type))
|
||||
.count();
|
||||
int count = 0;
|
||||
for (int i = 0; i < paramTypes.size(); i++) {
|
||||
String type = paramTypes.get(i);
|
||||
if ( !isPageParam(type) && !isOrderParam(type)
|
||||
&& !isSessionParameter(type) ) {
|
||||
if ( count>0 ) {
|
||||
if ( count + 1 == paramCount) {
|
||||
declaration
|
||||
.append(paramCount>2 ? ", and " : " and "); //Oxford comma
|
||||
}
|
||||
else {
|
||||
declaration
|
||||
.append(", ");
|
||||
}
|
||||
}
|
||||
count++;
|
||||
final String path = paramNames.get(i)
|
||||
.replace('$', '.');
|
||||
declaration
|
||||
.append("{@link ")
|
||||
.append(annotationMetaEntity.importType(entity))
|
||||
.append('#')
|
||||
.append(qualifier(path))
|
||||
.append(' ')
|
||||
.append(path)
|
||||
.append("}");
|
||||
}
|
||||
final String path = param.replace('$', '.');
|
||||
declaration
|
||||
.append("{@link ")
|
||||
.append(annotationMetaEntity.importType(entity))
|
||||
.append('#')
|
||||
.append(qualifier(path))
|
||||
.append(' ')
|
||||
.append(path)
|
||||
.append("}");
|
||||
}
|
||||
declaration
|
||||
.append('.')
|
||||
|
|
|
@ -254,7 +254,8 @@ public class QueryMethod extends AbstractQueryMethod {
|
|||
else {
|
||||
return stem + "_"
|
||||
+ paramTypes.stream()
|
||||
.filter(name -> !isPageParam(name) && !isOrderParam(name))
|
||||
.filter(type -> !isPageParam(type) && !isOrderParam(type)
|
||||
&& !isSessionParameter(type))
|
||||
.map(StringHelper::unqualify)
|
||||
.reduce((x,y) -> x + '_' + y)
|
||||
.orElse("");
|
||||
|
|
Loading…
Reference in New Issue