java学习笔记——商城项目练习——Activemq整合spring、添加商品时同步到索引库、商品详情页面展示(向业务逻辑中添加缓存)

                                     Activemq整合spring

1.1.    使用方法
第一步:除了引用activemq的依赖外,还要引用相关的jar包。

                
			org.springframework
			spring-jms
		
		
			org.springframework
			spring-context-support
		

第二步:配置Activemq整合spring。配置ConnectionFactory





	
	
		
	
	
	
		
		
	

第三步:配置生产者。
使用JMSTemplate对象。发送消息。
第四步:在spring容器中配置Destination。


    xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"
    xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd
    http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.2.xsd">

    
    
        
    

    
             class="org.springframework.jms.connection.SingleConnectionFactory">
        
        
    

    
    
    
        
        
    

    
    
        
            spring-queue
        

    

    
    
        
    

第五步:代码测试 

@Test
	public void testSpringActiveMq() throws Exception {
		//初始化spring容器
		ApplicationContext applicationContext = new ClassPathXmlApplicationContext("classpath:spring/applicationContext-activemq.xml");
		//从spring容器中获得JmsTemplate对象
		JmsTemplate jmsTemplate = applicationContext.getBean(JmsTemplate.class);
		//从spring容器中取Destination对象
		Destination destination = (Destination) applicationContext.getBean("queueDestination");
		//使用JmsTemplate对象发送消息。
		jmsTemplate.send(destination, new MessageCreator() {
			
			@Override
			public Message createMessage(Session session) throws JMSException {
				//创建一个消息对象并返回
				TextMessage textMessage = session.createTextMessage("spring activemq queue message");
				return textMessage;
			}
		});
	}

1.2.    代码测试
1.2.1.    发送消息

第一步:初始化一个spring容器
第二步:从容器中获得JMSTemplate对象。
第三步:从容器中获得一个Destination对象
第四步:使用JMSTemplate对象发送消息,需要知道Destination

@Test
	public void testQueueProducer() throws Exception {
		// 第一步:初始化一个spring容器
		ApplicationContext applicationContext = new ClassPathXmlApplicationContext("classpath:spring/applicationContext-activemq.xml");
		// 第二步:从容器中获得JMSTemplate对象。
		JmsTemplate jmsTemplate = applicationContext.getBean(JmsTemplate.class);
		// 第三步:从容器中获得一个Destination对象
		Queue queue = (Queue) applicationContext.getBean("queueDestination");
		// 第四步:使用JMSTemplate对象发送消息,需要知道Destination
		jmsTemplate.send(queue, new MessageCreator() {
			
			@Override
			public Message createMessage(Session session) throws JMSException {
				TextMessage textMessage = session.createTextMessage("spring activemq test");
				return textMessage;
			}
		});
	}

 1.2.2.    接收消息
e3-search-Service中接收消息。
第一步:把Activemq相关的jar包添加到工程中
第二步:创建一个MessageListener的实现类。

public class MyMessageListener implements MessageListener {

	@Override
	public void onMessage(Message message) {
		
		try {
			TextMessage textMessage = (TextMessage) message;
			//取消息内容
			String text = textMessage.getText();
			System.out.println(text);
		} catch (JMSException e) {
			e.printStackTrace();
		}
	}

}

第三步:配置spring和Activemq整合。

xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"

      xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"

      xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"

      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

      xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd

      http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd

      http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd

      http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.2.xsd">

 

     

      <bean id="targetConnectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory">

           <property name="brokerURL" value="tcp://192.168.25.168:61616" />

      bean>

     

      <bean id="connectionFactory"

           class="org.springframework.jms.connection.SingleConnectionFactory">

          

           <property name="targetConnectionFactory" ref="targetConnectionFactory" />

      bean>

     

      <bean id="queueDestination" class="org.apache.activemq.command.ActiveMQQueue">

           <constructor-arg>

                 <value>spring-queuevalue>

           constructor-arg>

      bean>

     

      <bean id="topicDestination" class="org.apache.activemq.command.ActiveMQTopic">

           <constructor-arg value="topic" />

      bean>

     

     

      "myMessageListener" class="cn.e3mall.search.listener.MyMessageListener" />

     

      "org.springframework.jms.listener.DefaultMessageListenerContainer">

           "connectionFactory" ref="connectionFactory" />

           "destination" ref="queueDestination" />

           "messageListener" ref="myMessageListener" />

     

beans>

第四步:测试代码。 

@Test
	public void testQueueConsumer() throws Exception {
		//初始化spring容器
		ApplicationContext applicationContext = new ClassPathXmlApplicationContext("classpath:spring/applicationContext-activemq.xml");
		//等待
		System.in.read();
	}

 

 

                                        添加商品同步到索引库

2.1.    Producer
e3-manager-server工程中发送消息。
当商品添加完成后发送一个TextMessage,包含一个商品id。

java学习笔记——商城项目练习——Activemq整合spring、添加商品时同步到索引库、商品详情页面展示(向业务逻辑中添加缓存)_第1张图片

java学习笔记——商城项目练习——Activemq整合spring、添加商品时同步到索引库、商品详情页面展示(向业务逻辑中添加缓存)_第2张图片

@Override

      public e3Result addItem(TbItem item, String desc) {

           // 1、生成商品id

           final long itemId = IDUtils.genItemId();

           // 2、补全TbItem对象的属性

           item.setId(itemId);

           //商品状态,1-正常,2-下架,3-删除

           item.setStatus((byte) 1);

           Date date = new Date();

           item.setCreated(date);

           item.setUpdated(date);

           // 3、向商品表插入数据

           itemMapper.insert(item);

           // 4、创建一个TbItemDesc对象

           TbItemDesc itemDesc = new TbItemDesc();

           // 5、补全TbItemDesc的属性

           itemDesc.setItemId(itemId);

           itemDesc.setItemDesc(desc);

           itemDesc.setCreated(date);

           itemDesc.setUpdated(date);

           // 6、向商品描述表插入数据

           itemDescMapper.insert(itemDesc);

           //发送一个商品添加消息

           jmsTemplate.send(topicDestination, new MessageCreator() {

                

                 @Override

                 public Message createMessage(Session session) throws JMSException {

                      TextMessage textMessage = session.createTextMessage(itemId + "");

                      return textMessage;

                 }

           });

           // 7e3Result.ok()

           return e3Result.ok();

      }

2.2.    Consumer
2.2.1.    功能分析

1、接收消息。需要创建MessageListener接口的实现类。
2、取消息,取商品id。
3、根据商品id查询数据库。
4、创建一SolrInputDocument对象。
5、使用SolrServer对象写入索引库。
6、返回成功,返回e3Result。

2.2.2.    Dao层
根据商品id查询商品信息。

 java学习笔记——商城项目练习——Activemq整合spring、添加商品时同步到索引库、商品详情页面展示(向业务逻辑中添加缓存)_第3张图片

映射文件:


2.2.3.    Service层
参数:商品ID
业务逻辑:
1、根据商品id查询商品信息。
2、创建一SolrInputDocument对象。
3、使用SolrServer对象写入索引库。
4、返回成功,返回e3Result。
返回值:e3Result

public e3Result addDocument(long itemId) throws Exception {
		// 1、根据商品id查询商品信息。
		SearchItem searchItem = searchItemMapper.getItemById(itemId);
		// 2、创建一SolrInputDocument对象。
		SolrInputDocument document = new SolrInputDocument();
		// 3、使用SolrServer对象写入索引库。
		document.addField("id", searchItem.getId());
		document.addField("item_title", searchItem.getTitle());
		document.addField("item_sell_point", searchItem.getSell_point());
		document.addField("item_price", searchItem.getPrice());
		document.addField("item_image", searchItem.getImage());
		document.addField("item_category_name", searchItem.getCategory_name());
		document.addField("item_desc", searchItem.getItem_desc());
		// 5、向索引库中添加文档。
		solrServer.add(document);
		solrServer.commit();
		// 4、返回成功,返回e3Result。
		return e3Result.ok();
	}

2.2.4.    Listener

public class ItemChangeListener implements MessageListener {
	
	@Autowired
	private SearchItemServiceImpl searchItemServiceImpl;

	@Override
	public void onMessage(Message message) {
		try {
			TextMessage textMessage = null;
			Long itemId = null; 
			//取商品id
			if (message instanceof TextMessage) {
				textMessage = (TextMessage) message;
				itemId = Long.parseLong(textMessage.getText());
			}
			//向索引库添加文档
			searchItemServiceImpl.addDocument(itemId);
			
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

}

2.2.5.    Spring配置监听

java学习笔记——商城项目练习——Activemq整合spring、添加商品时同步到索引库、商品详情页面展示(向业务逻辑中添加缓存)_第4张图片

2.2.6.    实现流程

java学习笔记——商城项目练习——Activemq整合spring、添加商品时同步到索引库、商品详情页面展示(向业务逻辑中添加缓存)_第5张图片

 

 

                                        商品详情页面展示


创建一个商品详情页面展示的工程。是一个表现层工程。

3.1.    工程搭建
e3-item-web。打包方式war。可以参考e3-portal-web


3.1.1.    Pom文件


	4.0.0
	
		cn.e3mall
		e3-parent
		0.0.1-SNAPSHOT
	
	cn.e3mall
	e3-item-web
	0.0.1-SNAPSHOT
	war
	
		
			cn.e3mall
			e3-manager-interface
			0.0.1-SNAPSHOT
		
		
		
			org.springframework
			spring-context
		
		
			org.springframework
			spring-beans
		
		
			org.springframework
			spring-webmvc
		
		
			org.springframework
			spring-jdbc
		
		
			org.springframework
			spring-aspects
		
		
			org.springframework
			spring-jms
		
		
			org.springframework
			spring-context-support
		
		
		
			jstl
			jstl
		
		
			javax.servlet
			servlet-api
			provided
		
		
			javax.servlet
			jsp-api
			provided
		
		
		
			com.alibaba
			dubbo
			
			
				
					org.springframework
					spring
				
				
					org.jboss.netty
					netty
				
			
		
		
			org.apache.zookeeper
			zookeeper
		
		
			com.github.sgroschupf
			zkclient
		
		
			junit
			junit
		
	
	
	
		
			
				org.apache.tomcat.maven
				tomcat7-maven-plugin
				
					8086
					/
				
			
		
	

3.2.    功能分析
在搜索结果页面点击商品图片或者商品标题,展示商品详情页面。

java学习笔记——商城项目练习——Activemq整合spring、添加商品时同步到索引库、商品详情页面展示(向业务逻辑中添加缓存)_第6张图片

请求的url:/item/{itemId}
参数:商品id
返回值:String 逻辑视图
业务逻辑:
1、从url中取参数,商品id
2、根据商品id查询商品信息(tb_item)得到一个TbItem对象,缺少images属性,可以创建一个pojo继承TbItem,添加一个getImages方法。在e3-item-web工程中。

public class Item extends TbItem {

	public String[] getImages() {
		String image2 = this.getImage();
		if (image2 != null && !"".equals(image2)) {
			String[] strings = image2.split(",");
			return strings;
		}
		return null;
	}
	
	public Item() {
		
	}
	
	public Item(TbItem tbItem) {
		this.setBarcode(tbItem.getBarcode());
		this.setCid(tbItem.getCid());
		this.setCreated(tbItem.getCreated());
		this.setId(tbItem.getId());
		this.setImage(tbItem.getImage());
		this.setNum(tbItem.getNum());
		this.setPrice(tbItem.getPrice());
		this.setSellPoint(tbItem.getSellPoint());
		this.setStatus(tbItem.getStatus());
		this.setTitle(tbItem.getTitle());
		this.setUpdated(tbItem.getUpdated());
	}
	
}

3、根据商品id查询商品描述。
4、展示到页面。

3.3.    Dao层
查询tb_item, tb_item_desc两个表,都是单表查询。可以使用逆向工程。
3.4.    Service层
1、根据商品id查询商品信息
参数:商品id
返回值:TbItem
2、根据商品id查询商品描述
参数:商品id
返回值:TbItemDesc

@Override
	public TbItemDesc getItemDescById(long itemId) {
		TbItemDesc itemDesc = itemDescMapper.selectByPrimaryKey(itemId);
		return itemDesc;
	}

java学习笔记——商城项目练习——Activemq整合spring、添加商品时同步到索引库、商品详情页面展示(向业务逻辑中添加缓存)_第7张图片

3.5.    表现层
3.5.1.    Controller

请求的url:/item/{itemId}
参数:商品id
返回值:String 逻辑视图

@Controller
public class ItemController {

	@Autowired
	private ItemService itemService;
	
	@RequestMapping("/item/{itemId}")
	public String showItemInfo(@PathVariable Long itemId, Model model) {
		//跟据商品id查询商品信息
		TbItem tbItem = itemService.getItemById(itemId);
		//把TbItem转换成Item对象
		Item item = new Item(tbItem);
		//根据商品id查询商品描述
		TbItemDesc tbItemDesc = itemService.getItemDescById(itemId);
		//把数据传递给页面
		model.addAttribute("item", item);
		model.addAttribute("itemDesc", tbItemDesc);
		return "item";
	}
}

 

3.6.    向业务逻辑中添加缓存
3.6.1.    缓存添加分析

使用redis做缓存。

业务逻辑:
1、根据商品id到缓存中命中
2、查到缓存,直接返回。
3、差不到,查询数据库
4、把数据放到缓存中
5、返回数据

缓存中缓存热点数据,提供缓存的使用率。需要设置缓存的有效期。一般是一天的时间,可以根据实际情况跳转。

由于Redis中只能对key设置有效期,无法设置value中hash集合中的表示,那么我们如何让看起来简洁、带分类的保存数据的hash集合呢?

我们需要使用String类型来保存商品数据的key。
可以使用加前缀方法对对象在redis中的key进行归类。用“:”符合分割字符串,“:”符合在Redis的查看工具中是可以自动识别为文件夹的,这样是不是就很醒目好区分了呢!
ITEM_INFO:123456:BASE
ITEM_INFO:123456:DESC

java学习笔记——商城项目练习——Activemq整合spring、添加商品时同步到索引库、商品详情页面展示(向业务逻辑中添加缓存)_第8张图片

如果把二维表保存到redis中:
1、表名就是第一层
2、主键是第二层
3、字段名第三次
三层使用“:”分隔作为key,value就是字段中的内容。

3.6.2.    把redis相关的jar包添加到工程

java学习笔记——商城项目练习——Activemq整合spring、添加商品时同步到索引库、商品详情页面展示(向业务逻辑中添加缓存)_第9张图片

3.6.3.    添加缓存

@Override

      public TbItem getItemById(long itemId) {

           try {

                 //查询缓存

                 String json = jedisClient.get(ITEM_INFO_PRE + ":" + itemId + ":BASE");

                 if (StringUtils.isNotBlank(json)) {

                      //把json转换为java对象

                      TbItem item = JsonUtils.jsonToPojo(json, TbItem.class);

                      return item;

                 }

           } catch (Exception e) {

                 e.printStackTrace();

           }

           //根据商品id查询商品信息

           //TbItem tbItem = itemMapper.selectByPrimaryKey(itemId);

           TbItemExample example = new TbItemExample();

           //设置查询条件

           Criteria criteria = example.createCriteria();

           criteria.andIdEqualTo(itemId);

           List list = itemMapper.selectByExample(example);

           if (list != null && list.size() > 0) {

                 TbItem item = list.get(0);

                 try {

                      //把数据保存到缓存

                      jedisClient.set(ITEM_INFO_PRE + ":" + itemId + ":BASE", JsonUtils.objectToJson(item));

                      //设置缓存的有效期

                      jedisClient.expire(ITEM_INFO_PRE + ":" + itemId + ":BASE", ITEM_INFO_EXPIRE);

                 } catch (Exception e) {

                      e.printStackTrace();

                 }

                 return item;

           }

           return null;

      }

取商品描述添加缓存: 

@Override

      public TbItemDesc getItemDescById(long itemId) {

           try {

                 String json = jedisClient.get(ITEM_INFO_PRE + ":" + itemId + ":DESC");

                 //判断缓存是否命中

                 if (StringUtils.isNotBlank(json) ) {

                      //转换为java对象

                      TbItemDesc itemDesc = JsonUtils.jsonToPojo(json, TbItemDesc.class);

                      return itemDesc;

                 }

           } catch (Exception e) {

                 e.printStackTrace();

           }

           TbItemDesc itemDesc = itemDescMapper.selectByPrimaryKey(itemId);

           try {

                 jedisClient.set(ITEM_INFO_PRE + ":" + itemId + ":DESC", JsonUtils.objectToJson(itemDesc));

                 //设置过期时间

                 jedisClient.expire(ITEM_INFO_PRE + ":" + itemId + ":DESC", ITEM_INFO_EXPIRE);

            } catch (Exception e) {

                 e.printStackTrace();

           }

           return itemDesc;

      }

你可能感兴趣的:(java学习笔记)