springboot搭建 整合activemq

Easter79
• 阅读 636

点击下载源码密码: pius

需要下载的插件:lombok

本项目包含:activemq mybatis

数据库:

CREATE TABLE `t_user` (
  `user_id` int(11) NOT NULL AUTO_INCREMENT,
  `user_name` varchar(255) NOT NULL,
  `password` varchar(255) NOT NULL,
  `phone` varchar(255) NOT NULL,
  PRIMARY KEY (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1009 DEFAULT CHARSET=utf8;

最终项目结构

springboot搭建 整合activemq

1、创建project

springboot搭建 整合activemq

springboot搭建 整合activemq

springboot搭建 整合activemq

按照上面的步骤完成创建项目,第一次创建springboot 会比较慢。。。

使用:application.yml

server: port: 8080

spring: datasource: name: test url: jdbc:mysql://192.168.1.150:3306/boot-ssm username: root password: root # 使用druid数据源 type: com.alibaba.druid.pool.DruidDataSource driver-class-name: com.mysql.jdbc.Driver filters: stat maxActive: 20 initialSize: 1 maxWait: 60000 minIdle: 1 timeBetweenEvictionRunsMillis: 60000 minEvictableIdleTimeMillis: 300000 validationQuery: select 'x' testWhileIdle: true testOnBorrow: false testOnReturn: false poolPreparedStatements: true maxOpenPreparedStatements: 20 activemq: user: admin password: admin broker-url: tcp://192.168.1.150:61616 pool: enabled: true max-connections: 10

persistenceAdapter jdbcPersistenceAdapter

mybatis: mapper-locations: classpath:mapping/*.xml type-aliases-package: com.sell.model

#pagehelper分页插件 pagehelper: helperDialect: mysql reasonable: true supportMethodsArguments: true params: count=countSql

pom:

4.0.0

com.sell sell 0.0.1-SNAPSHOT jar

sell Demo project for Spring Boot

org.springframework.boot spring-boot-starter-parent 2.0.0.RELEASE UTF-8 UTF-8 1.8 org.springframework.boot spring-boot-starter-web
  <dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter-test</artifactId>
     <scope>test</scope>
  </dependency>

  <!-- https://mvnrepository.com/artifact/org.assertj/assertj-core -->
  <dependency>
     <groupId>org.assertj</groupId>
     <artifactId>assertj-core</artifactId>
     <version>2.6.0</version>
     <scope>test</scope>
  </dependency>
  <!--log快捷方式插件-->
  <dependency>
     <groupId>org.projectlombok</groupId>
     <artifactId>lombok</artifactId>
  </dependency>
  <dependency>
     <groupId>mysql</groupId>
     <artifactId>mysql-connector-java</artifactId>
     <scope>runtime</scope>
  </dependency>
  <!-- alibaba的druid数据库连接池 -->
  <dependency>
     <groupId>com.alibaba</groupId>
     <artifactId>druid</artifactId>
     <version>1.0.11</version>
  </dependency>
  <dependency>
     <groupId>com.fasterxml.jackson.core</groupId>
     <artifactId>jackson-core</artifactId>
  </dependency>
  <dependency>
     <groupId>com.fasterxml.jackson.core</groupId>
     <artifactId>jackson-databind</artifactId>
  </dependency>
  <dependency>
     <groupId>com.fasterxml.jackson.datatype</groupId>
     <artifactId>jackson-datatype-joda</artifactId>
  </dependency>
  <dependency>
     <groupId>com.fasterxml.jackson.module</groupId>
     <artifactId>jackson-module-parameter-names</artifactId>
  </dependency>
  <dependency>
     <groupId>com.alibaba</groupId>
     <artifactId>druid-spring-boot-starter</artifactId>
     <version>1.1.0</version>
  </dependency>
  <dependency>
     <groupId>org.mybatis.spring.boot</groupId>
     <artifactId>mybatis-spring-boot-starter</artifactId>
     <version>1.3.2</version>
  </dependency>
  <!--spring boot 热部署功能-->
  <dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-devtools</artifactId>
     <optional>true</optional>
  </dependency>
  <!--activemq依赖-->
  <dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter-activemq</artifactId>
  </dependency>
  <dependency>
     <groupId>org.apache.activemq</groupId>
     <artifactId>activemq-pool</artifactId>
     <!-- <version>5.7.0</version> -->
  </dependency>
org.springframework.boot spring-boot-maven-plugin true

然后自己网上百度逆向工程生成mapper与model mapping.xml

activemq:配置,只是实现了简单的发送接收,没有进行持久化,springboot我还不太会持久化activemq

首先,pom中添加activemq依赖

创建生产者与消费者,我只是实现了queue方式

ProducerServiceImpl

package com.sell.activemq;

import com.sell.activemq.spi.IProducerService; import org.apache.activemq.command.ActiveMQQueue; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.jms.core.JmsMessagingTemplate; import org.springframework.stereotype.Service;

import javax.jms.Destination;

/** * @author wugong.jie * @version v1.0.0 * @date 2018/4/6 */ @Service public class ProducerServiceImpl implements IProducerService {

@Autowired
private JmsMessagingTemplate jmsMessagingTemplate;

/\*\*
 \* 发送到指定的消息队列中
 \* @Author wugong
 \* @Date 2018/4/6 14:55
 \* @Modify if true,please enter your name or update time
 \* @param
 \*/
@Override
public void sendTextMessage(Destination destination, String textMessage){
    jmsMessagingTemplate.convertAndSend(destination, textMessage);
}

/\*\*
 \* 发送到默认的消息队列中
 \* @Author wugong
 \* @Date 2018/4/6 14:55
 \* @Modify if true,please enter your name or update time
 \* @param
 \*/
@Override
public void sendTextMessage(String textMessage){
    Destination destination = new ActiveMQQueue("boot-queue");
    this.sendTextMessage(destination,textMessage);
}

}

ConsumerListenter

package com.sell.activemq;

import lombok.extern.slf4j.Slf4j; import org.springframework.jms.annotation.JmsListener; import org.springframework.stereotype.Component;

/** * @author wugong.jie * @version v1.0.0 * @date 2018/4/6 */ @Component @Slf4j public class ConsumerListenter {

@JmsListener(destination = "boot-queue")
public void receiveMeessage(String message){
  log.info("接收的消息:"+message);
}

}

indexController:

package com.sell.controller;

import com.sell.activemq.spi.IProducerService; import com.sell.model.User; import com.sell.service.spi.IUserService; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController;

import java.util.Random;

/** * @author wugong.jie * @version v1.0.0 * @date 2018/3/31 */ @RestController @Slf4j public class IndexController {

@Autowired
private IUserService userService;
@Autowired
private IProducerService producerService;

@RequestMapping(value="/",method = RequestMethod.GET)
public String index() {
    log.info("index 66666");
    return "Hello World!";
}

/\*\*
 \* 保存user信息
 \* @Author wugong
 \* @Date 2018/4/6 12:12
 \* @Modify if true,please enter your name or update time
 \* @param
 \*/
@GetMapping("saveUser")
public String saveUserMapp(){
    User user = new User();
    user.setPassword("11111");
    user.setPhone("12345678901");
    user.setUserName(new Random(1000).nextInt()+"");
    userService.saveUser(user);
    log.info("请求创建用户信息");
    producerService.sendTextMessage("创建了一个用户:"+user.getUserName());
    return "save user";
}

}

package com.sell.service;

import com.sell.mapper.UserMapper; import com.sell.model.User; import com.sell.service.spi.IUserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional;

/** * @author wugong.jie * @version v1.0.0 * @date 2018/4/6 */ @Service public class UserServiceImpl implements IUserService {

@Autowired
private UserMapper userMapper;

@Override
@Transactional
public void saveUser(User user){
    userMapper.insert(user);
}

}

1、activemq启动

2、启动springboot:

3、访问:localhost:8080/saveUser

会新增一个用户信息,然后发送一条消息

springboot搭建 整合activemq

springboot搭建 整合activemq

点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
3个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Stella981 Stella981
3年前
Opencv中Mat矩阵相乘——点乘、dot、mul运算详解
Opencv中Mat矩阵相乘——点乘、dot、mul运算详解2016年09月02日00:00:36 \牧野(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fme.csdn.net%2Fdcrmg) 阅读数:59593
Wesley13 Wesley13
3年前
ActiveMQ学习总结(1)——ActiveMQ快速入门
1.下载ActiveMQ去官方网站下载:http://activemq.apache.org/(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Factivemq.apache.org%2F)2.运行ActiveMQ解压缩apa
Wesley13 Wesley13
3年前
ActiveMQ快速入门
1.下载ActiveMQ去官方网站下载:http://activemq.apache.org/(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Factivemq.apache.org%2F)2.运行ActiveMQ解压缩apa
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
9个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这
Easter79
Easter79
Lv1
今生可爱与温柔,每一样都不能少。
文章
2.8k
粉丝
5
获赞
1.2k