Minor refactorization of two methods in AbstractDao
This commit is contained in:
@@ -19,6 +19,7 @@
|
|||||||
*/
|
*/
|
||||||
package org.airsonic.player.dao;
|
package org.airsonic.player.dao;
|
||||||
|
|
||||||
|
import org.apache.commons.lang.StringUtils;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
@@ -26,6 +27,7 @@ import org.springframework.jdbc.core.JdbcTemplate;
|
|||||||
import org.springframework.jdbc.core.RowMapper;
|
import org.springframework.jdbc.core.RowMapper;
|
||||||
import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate;
|
import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
@@ -58,26 +60,14 @@ public class AbstractDao {
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected String questionMarks(String columns) {
|
protected String questionMarks(String columns) {
|
||||||
int count = columns.split(", ").length;
|
int numberOfColumns = StringUtils.countMatches(columns, ",") + 1;
|
||||||
StringBuilder builder = new StringBuilder();
|
return StringUtils.repeat("?", ", ", numberOfColumns);
|
||||||
for (int i = 0; i < count; i++) {
|
|
||||||
builder.append('?');
|
|
||||||
if (i < count - 1) {
|
|
||||||
builder.append(", ");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return builder.toString();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected String prefix(String columns, String prefix) {
|
protected String prefix(String columns, String prefix) {
|
||||||
StringBuilder builder = new StringBuilder();
|
List<String> l = Arrays.asList(columns.split(", "));
|
||||||
for (String s : columns.split(", ")) {
|
l.replaceAll(s -> prefix + "." + s);
|
||||||
builder.append(prefix).append(".").append(s).append(",");
|
return String.join(", ", l);
|
||||||
}
|
|
||||||
if (builder.length() > 0) {
|
|
||||||
builder.setLength(builder.length() - 1);
|
|
||||||
}
|
|
||||||
return builder.toString();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected int update(String sql, Object... args) {
|
protected int update(String sql, Object... args) {
|
||||||
|
|||||||
Reference in New Issue
Block a user