|
@ -1166,7 +1166,7 @@ public class ArticleService {
|
1166
|
1166
|
String articleId, @DefaultValue("5") int rows) throws SQLException {
|
1167
|
1167
|
String[] ids = this.articleDao.queryArticleIdWithSameKeyWord(con, articleId, rows);
|
1168
|
1168
|
if (ids != null) {
|
1169
|
|
return this.articleDao.query(con, ids);
|
|
1169
|
return this.articleDao.query(con, ids,"1");
|
1170
|
1170
|
}
|
1171
|
1171
|
return Collections.<Article> emptyList();
|
1172
|
1172
|
}
|
|
@ -1278,7 +1278,7 @@ public class ArticleService {
|
1278
|
1278
|
@Get
|
1279
|
1279
|
@Path("/qm")
|
1280
|
1280
|
public List<Article> query(@JdbcConn Connection con,String[] id)throws SQLException {
|
1281
|
|
return this.articleDao.query(con, id);
|
|
1281
|
return this.articleDao.query(con, id,null);
|
1282
|
1282
|
}
|
1283
|
1283
|
|
1284
|
1284
|
public static void main(String[] args) {
|