code format

This commit is contained in:
thinkgem
2023-04-07 16:37:55 +08:00
parent 53c01f6c0a
commit 76f57604fe
7 changed files with 14 additions and 22 deletions

View File

@@ -23,7 +23,6 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Map;
@@ -84,12 +83,7 @@ public class ArticleService extends CrudService<ArticleDao, Article> {
*/
@Override
public Page<Article> findPage(Article article) {
updateExpiredWeightThreadPool.submit(new Runnable() {
@Override
public void run() {
updateExpiredWeight(article);
}
});
updateExpiredWeightThreadPool.submit(() -> updateExpiredWeight(article));
return super.findPage(article);
}
@@ -98,17 +92,15 @@ public class ArticleService extends CrudService<ArticleDao, Article> {
* @return new Object[]{栏目Id,内容Id,内容标题}
*/
public List<Object[]> findByIds(String ids) {
if (ids == null) {
return new ArrayList<Object[]>();
}
List<Object[]> list = ListUtils.newArrayList();
String[] idss = StringUtils.split(ids, ",");
Article where = new Article();
where.setId_in(idss);
List<Article> l = dao.findList(where);
for (Article e : l) {
list.add(new Object[] { e.getCategory().getId(), e.getId(), StringUtils.abbr(e.getTitle(), 50) });
if (ids == null) {
return list;
}
Article where = new Article();
where.setId_in(StringUtils.split(ids, ","));
dao.findList(where).forEach((e) -> {
list.add(new Object[] { e.getCategory().getId(), e.getId(), StringUtils.abbr(e.getTitle(), 50) });
});
return list;
}

View File

@@ -34,7 +34,7 @@ public class CommentService extends CrudService<CommentDao, Comment> {
/**
* 查询分页数据
* @param comment 查询条件
* @param comment.page 分页对象
* @param comment page 分页对象
* @return
*/
@Override

View File

@@ -34,7 +34,7 @@ public class ReportService extends CrudService<ReportDao, Report> {
/**
* 查询分页数据
* @param report 查询条件
* @param report.page 分页对象
* @param report page 分页对象
* @return
*/
@Override

View File

@@ -35,7 +35,7 @@ public class SiteService extends CrudService<SiteDao, Site> {
/**
* 查询分页数据
* @param site 查询条件
* @param site.page 分页对象
* @param site page 分页对象
* @return
*/
@Override

View File

@@ -33,7 +33,7 @@ public class TagService extends CrudService<TagDao, Tag> {
/**
* 查询分页数据
* @param tag 查询条件
* @param tag.page 分页对象
* @param tag page 分页对象
* @return
*/
@Override

View File

@@ -34,7 +34,7 @@ public class VisitLogService extends CrudService<VisitLogDao, VisitLog> {
/**
* 查询分页数据
* @param visitLog 查询条件
* @param visitLog.page 分页对象
* @param visitLog page 分页对象
* @return
*/
@Override