springmvc使用aop异步更新solr中的数据

继续项目中如何使用solr

今天分享一下,用户在新增,修改文章是,采用aop来更新solr中的数据,对文章本来的逻辑和solr逻辑进行解耦

如果没有aop,solr的使用情况可能是这样的

这里写图片描述

这样就会把文章自身的逻辑和solr紧紧地耦合在一起。

这种情况下就非常适合用aop技术了

思路

在文章新增或修改完成之后,有一个返回值,就是修改的文章

采用aop在文章修改后去更新solr

文章新增,修改

package com.jcms.controller.admin;


/**
 * 文章控制器
 * 
 * @author 程高伟
 *
 */
@Controller
@RequestMapping("/admin/article")
public class ArticleController {
    /**
     * 添加,修改文章
     * 
     * @param article
     * @return
     * @throws Exception
     */
    @ResponseBody
    @RequestMapping(value = "/addArticle", method = RequestMethod.POST)
    public String addArticle(Article article, Boolean useImage,
            @RequestParam(required = false, value = "file") MultipartFile file, HttpServletRequest request)
            throws Exception {
        // 各种判断
        article = articleService.save(article);
        // aop中会用到这里的返回值
        return BaseReturn.response(ErrorCode.SUCCESS, article);
    }
}
 
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30

文章aop

package com.jcms.aspect;


/**
 * 文章切面
 * 
 * @author 程高伟
 * @time 2017年5月17日下午4:57:36
 */
@Aspect
@Component
public class ArticleAspect {
    private final Logger logger = LoggerFactory.getLogger(this.getClass());
    @Autowired
    private ArticleService articleService;
    @Autowired
    private SolrService solrService;

    // 更新连接点
    @Pointcut("execution (* com.jcms.controller.admin.ArticleController.addArticle(..))")
    public void update() {
    }

    /**
     * 文章新增、修改都要更新solr服务器的数据
     * 
     * @param joinPoint 连接点
     * @param object 返回值
     * @throws UnsupportedEncodingException
     */

    @AfterReturning(returning = "object", pointcut = "update()")
    public void updateAfterReturning(JoinPoint joinPoint, Object object) throws UnsupportedEncodingException {
        // 请求参数
        logger.info("args={}", joinPoint.getArgs());
        // 方法返回值
        logger.info("response={}", object);
        JSONObject jsonObj = new JSONObject(object.toString());
        String code = (String) jsonObj.get("code");
        if (StringUtils.isNotBlank(code)) {
            if (code.equals("200")) {// 执行成功
                JSONObject articleJsonObj = jsonObj.getJSONObject("result");
                if (articleJsonObj != null) {
                    String id = (String) articleJsonObj.get("id");
                    if(StringUtils.isNotBlank(id)){// 有id
                        Article article = articleService.findById(id);
                        if(article.getNeedReview()==0||article.getReview()==1){// 不需要审核的文章和审核通过的文章
                            ArticleSolr articleSolr = new ArticleSolr();
                            BeanUtils.copyProperties(article, articleSolr);
                            logger.info("更新solr,更新的内容:articleSolr={}", articleSolr);
                            System.out.println("异步调用开始");
                            solrService.updateArticle(articleSolr);
                            System.out.println("异步调用结束");
                        }

                    }

                }
            }
        }
    }
}
 
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62

还要在springmvc的xml配置文件中开始

<!-- aop -->
<aop:aspectj-autoproxy proxy-target-class="true"/>

这样在方法返回的时候就能拿到数据,然后去更新solr

这里写图片描述

因为我们的solr在单独的服务器,所以为了减少延迟,这里

solrService.updateArticle(articleSolr);

采用异步的方式执行

异步

异步执行也是在spring管理之下

所以我们对SolrUtil进行了一次包装,让它作为spring的bean

@Service
public class SolrService {
    @Async
    public void updateArticle(ArticleSolr article) {
        SolrUtil.saveSolrResource(article);
    }
}
 
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

我们还要开启异步,在配置文件中添加如下代码

<!-- 异步 -->
<task:annotation-driven executor="asyncExecutor" />  
<task:executor id="asyncExecutor" pool-size="100-10000" queue-capacity="10" />
 
 
  • 1
  • 2
  • 3
  • 1
  • 2
  • 3

这里写图片描述

这样对solr的操作就和文章本身的操作解耦了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值