Skip to content

Commit

Permalink
♻️ refactor(build): 更新构建配置,优化Gradle构建任务命名和触发条件,调整工作流调度,提高代码可维护性
Browse files Browse the repository at this point in the history
  • Loading branch information
vnobo committed Aug 8, 2024
1 parent 69679ec commit 37951e5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion boot/oauth2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.session:spring-session-data-redis'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'org.postgresql:postgresql'

testImplementation 'org.springframework.security:spring-security-test'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public static ParamSql buildParamSql(Map<String, Object> objectMap, String prefi
if (value instanceof String) {
whereSql.add(column + " like " + paramName);
} else if (value instanceof Collection<?>) {
whereSql.add(column + " in :" + paramName);
whereSql.add(column + " in " + paramName);
} else {
whereSql.add(column + " = " + paramName);
}
Expand Down

0 comments on commit 37951e5

Please sign in to comment.