JMSSample

本文介绍如何使用JMS实现消息的发布与订阅,包括配置环境、创建Publisher和Consumer,以及在web项目中应用。

JMSSample


Preface

  • 因为功能平行,所以需要在之前jerseyRestfulservice的基础上需要添加独立package
  • 最终版本中包含持久/非持久消息、topic/queue 消息、同步非同步接收等所有方式,本sample为清晰起见,只展示发布-订阅的持久消息发送接收,其他方式大同小异,具体移步github
  • 其他需要进一步设置的功能,如持久化到数据库或指定本地文件等,本sample及最终代码中暂时没有涉及,不过有时间会继续更新
  • 本文原创,允许转载但务必贴出本文链接

环境&工具

JMS 基本概念

  • From Oracle: Messaging is a method of communication between software components or applications. A messaging system is a peer-to-peer facility: A messaging client can send messages to, and receive messages from, any other client. Each client connects to a messaging agent that provides facilities for creating, sending, receiving, and reading messages.
  • wikipedia
  • javapoint以及其他相关材料中的总结:
    • JMS 相关类及其关系
      jms programming model
    • p2p 方式
      jms queue
    • publisher-subscriber 方式
      jms topic
    • 以上两种方式的api
      jms api

workspace/Servers/tomcat/context.xml 在tomcat中配置JNDI,可参考activeMQtomcatExpert

<?xml version="1.0" encoding="UTF-8"?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
--><!-- The contents of this file will be loaded for each web application -->
<Context>

    <!-- Default set of monitored resources. If one of these changes, the    -->
    <!-- web application will be reloaded.                                   -->
    <WatchedResource>WEB-INF/web.xml</WatchedResource>
    <WatchedResource>${catalina.base}/conf/web.xml</WatchedResource>

    <Resource 
      name="jms/FailoverConnectionFactory" 
      auth="Container" 
      type="org.apache.activemq.ActiveMQConnectionFactory" 
      description="JMS Connection Factory" 
      factory="org.apache.activemq.jndi.JNDIReferenceFactory" 
      brokerURL="failover:(tcp://localhost:61616)?initialReconnectDelay=100&amp;maxReconnectAttempts=5" 
      brokerName="localhost" 
      useEmbeddedBroker="false"/> 
    <Resource 
      name="jms/NormalConnectionFactory" 
      auth="Container" 
      type="org.apache.activemq.ActiveMQConnectionFactory" 
      description="JMS Connection Factory" 
      factory="org.apache.activemq.jndi.JNDIReferenceFactory" 
      brokerURL="tcp://localhost:61616" 
      brokerName="localhost" 
      useEmbeddedBroker="false"/> 
    <Resource 
      name="jms/topic/MyTopic"
      auth="Container" 
      type="org.apache.activemq.command.ActiveMQTopic" 
      factory="org.apache.activemq.jndi.JNDIReferenceFactory" 
      physicalName="MY.TEST.FOO"/> 
    <Resource 
      name="jms/queue/MyQueue" 
      auth="Container" 
      type="org.apache.activemq.command.ActiveMQQueue" 
      factory="org.apache.activemq.jndi.JNDIReferenceFactory" 
      physicalName="MY.TEST.FOO.QUEUE"/>

    <!-- Uncomment this to disable session persistence across Tomcat restarts -->
    <!--
    <Manager pathname="" />
    -->

    <!-- Uncomment this to enable Comet connection tacking (provides events
         on session expiration as well as webapp lifecycle) -->
    <!--
    <Valve className="org.apache.catalina.valves.CometConnectionManagerValve" />
    -->
</Context>

创建publisher

package com.flvcd.servlet; 

import java.io.IOException; 
import java.io.PrintWriter; 

import javax.jms.Connection; 
import javax.jms.ConnectionFactory; 
import javax.jms.DeliveryMode; 
import javax.jms.Destination; 
import javax.jms.JMSException; 
import javax.jms.Message; 
import javax.jms.MessageListener; 
import javax.jms.MessageProducer; 
import javax.jms.Session; 
import javax.naming.Context; 
import javax.naming.InitialContext; 
import javax.naming.NamingException; 
import javax.servlet.ServletException; 
import javax.servlet.http.HttpServlet; 
import javax.servlet.http.HttpServletRequest; 
import javax.servlet.http.HttpServletResponse; 

public class MyPublish extends HttpServlet implements MessageListener { 


    private InitialContext initCtx; 
    private Context envContext; 
    private ConnectionFactory connectionFactory; 
    private Connection connection; 
    private Session jmsSession; 
    private MessageProducer producer; 


    public void onMessage(Message message) { 
        // TODO Auto-generated method stub 

    } 

    // Constructor of the object.  
    public MyPublish() { 
        super(); 
    } 

    // Destruction of the servlet
    public void destroy() { 
        super.destroy(); 
    } 

    // pass content to doPost
    public void doGet(HttpServletRequest request, HttpServletResponse response) 
            throws ServletException, IOException { 

        doPost(request, response);
    } 

    // publish message
    public void doPost(HttpServletRequest request, HttpServletResponse response) 
            throws ServletException, IOException { 
        String content=request.getParameter("content"); 
        try { 
            producer.setDeliveryMode(DeliveryMode.PERSISTENT); 
            Message testMessage = jmsSession.createMessage(); 
            testMessage.setStringProperty("RefreshArticleId", content); 
            producer.send(testMessage); 
            testMessage.clearProperties(); 
            testMessage.setStringProperty("RefreshThreadId", content); 
            producer.send(testMessage); 
        } catch (Exception e) { 
            e.printStackTrace(); 
        } 


    } 

    // init JNDI and JMS session
    public void init() throws ServletException { 
        // Put your code here 
        try { 
            initCtx = new InitialContext(); 
            envContext = (Context) initCtx.lookup("java:comp/env"); 
            connectionFactory = (ConnectionFactory) envContext.lookup("jms/NormalConnectionFactory"); 
            connection = connectionFactory.createConnection(); 
            jmsSession = connection.createSession(false,Session.AUTO_ACKNOWLEDGE); 
            producer = jmsSession.createProducer((Destination) envContext.lookup("jms/topic/MyTopic")); 

        } catch (NamingException e) { 
            e.printStackTrace(); 
        } catch (JMSException e) { 
            e.printStackTrace(); 
        } 
    } 
}

创建异步 message consumer

package com.flvcd.servlet; 

import java.io.*; 
import javax.servlet.*; 
import javax.servlet.http.*; 
import javax.naming.*; 
import javax.jms.*; 
import org.apache.activemq.ActiveMQConnectionFactory; 

public class JMSListener extends HttpServlet implements MessageListener { 

    // initialize JNDI and JMS
    public void init(ServletConfig config) throws ServletException { 
        try { 
            InitialContext initCtx = new InitialContext(); 
            Context envContext = (Context) initCtx.lookup("java:comp/env"); 
            ConnectionFactory connectionFactory = (ConnectionFactory) envContext 
                    .lookup("jms/FailoverConnectionFactory"); 
            Connection connection = connectionFactory.createConnection(); 
            connection.setClientID("MyClient"); 
            Session jmsSession = connection.createSession(false, 
                    Session.AUTO_ACKNOWLEDGE); 
            TopicSubscriber consumer=jmsSession.createDurableSubscriber((Topic)envContext.lookup("jms/topic/MyTopic"), "MySub"); 
            consumer.setMessageListener(this); 
            connection.start(); 
        } catch (NamingException e) { 
            e.printStackTrace(); 
        } catch (JMSException e) { 
            e.printStackTrace(); 
        } 
    } 

    // receive the message and handle the content 
    public void onMessage(Message message) { 
        if (checkText(message, "RefreshArticleId") != null) { 
            String articleId = checkText(message, "RefreshArticleId"); 
            System.out.println("RefreshArticleId = " + articleId); 
        } else if (checkText(message, "RefreshThreadId") != null) { 
            String threadId = checkText(message, "RefreshThreadId"); 
            System.out.println("RefreshThreadId = " + threadId); 
        } else { 
            System.out.println("normal message"); 
        } 
    } 

    private static String checkText(Message m, String s) { 
        try { 
            return m.getStringProperty(s); 
        } catch (JMSException e) { 
            e.printStackTrace(System.out); 
            return null; 
        } 
    } 
}

index.jsp 置于WebContent/ 下

<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">

    <title>My JSP 'index.jsp' starting page</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
  </head>

  <body>
  <form action="myPublish.do">
    <input type="text" name="content" />
    <input type="submit" name="tijiao" />
  </form>

  </body>
</html>

该jsp为web项目首页,当项目在tomcat容器中启动,会自动打开该页面,在其中输入随机字符点击submit,字符会以get方式传给provider,之后将内容加进新创建的message中

index.jsp 置于WebContent/ 下

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>

<form action="myPublish.do"> 
    <input type="text" name="content" /> 
    <input type="submit" value="提交" > 
</form>

</body>
</html>

修改web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
    <display-name>RestfulService</display-name>

    <servlet>
        <servlet-name>api Jersey REST Service</servlet-name>
        <servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class> 
        <init-param>
            <param-name>jersey.config.server.provider.packages</param-name>
            <param-value>webService</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>api Jersey REST Service</servlet-name>
        <url-pattern>/REST/*</url-pattern>
    </servlet-mapping>

    <servlet> 
        <servlet-name>jms-listener</servlet-name> 
        <servlet-class> 
            com.flvcd.servlet.JMSListener 
        </servlet-class> 
        <load-on-startup>1</load-on-startup> 
        </servlet> 

        <servlet>
        <description>This is the description of my J2EE component</description>
        <display-name>This is the display name of my J2EE component</display-name>
        <servlet-name>MyPublish</servlet-name>
        <servlet-class>com.flvcd.servlet.MyPublish</servlet-class>
    </servlet>

    <servlet-mapping>
        <servlet-name>MyPublish</servlet-name>
        <url-pattern>/myPublish.do</url-pattern>
    </servlet-mapping>

    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
</web-app>
内容概要:本文系统介绍了算术优化算法(AOA)的基本原理、核心思想及Python实现方法,并通过图像分割的实际案例展示了其应用价值。AOA是一种基于种群的元启发式算法,其核心思想来源于四则运算,利用乘除运算进行全局勘探,加减运算进行局部开发,通过数学优化器加速函数(MOA)和数学优化概率(MOP)动态控制搜索过程,在全局探索与局部开发之间实现平衡。文章详细解析了算法的初始化、勘探与开发阶段的更新策略,并提供了完整的Python代码实现,结合Rastrigin函数进行测试验证。进一步地,以Flask框架搭建前后端分离系统,将AOA应用于图像分割任务,展示了其在实际工程中的可行性与高效性。最后,通过收敛速度、寻优精度等指标评估算法性能,并提出自适应参数调整、模型优化和并行计算等改进策略。; 适合人群:具备一定Python编程基础和优化算法基础知识的高校学生、科研人员及工程技术人员,尤其适合从事人工智能、图像处理、智能优化等领域的从业者;; 使用场景及目标:①理解元启发式算法的设计思想与实现机制;②掌握AOA在函数优化、图像分割等实际问题中的建模与求解方法;③学习如何将优化算法集成到Web系统中实现工程化应用;④为算法性能评估与改进提供实践参考; 阅读建议:建议读者结合代码逐行调试,深入理解算法流程中MOA与MOP的作用机制,尝试在不同测试函数上运行算法以观察性能差异,并可进一步扩展图像分割模块,引入更复杂的预处理或后处理技术以提升分割效果。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值