Create server with spring.
Introduction
Create missian server with spring
Details
Step 1:Create an spring context configuration file
<?xml version="1.0" encoding="UTF-8"?> <beansxmlns="http://www.springframework.org/schema/beans" 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-3.0.xsd"> </beans>
Step 2:Create a custom editors to convert a 'host:port' string to SocketAddress
<beanclass="org.springframework.beans.factory.config.CustomEditorConfigurer"> <propertyname="customEditors"> <map> <entrykey="java.net.SocketAddress"> <beanclass="org.apache.mina.integration.beans.InetSocketAddressEditor"/> </entry> </map> </property> </bean>
Step 3:Build filters especially the Codec filter
<beanid="executorFilter"class="org.apache.mina.filter.executor.ExecutorFilter"/> <beanid="codecFilter"class="org.apache.mina.filter.codec.ProtocolCodecFilter"> <constructor-arg> <beanclass="com.missian.server.codec.MissianCodecFactory"/> </constructor-arg> </bean> <beanid="loggingFilter"class="org.apache.mina.filter.logging.LoggingFilter"> <propertyname="messageReceivedLogLevel"value="DEBUG"/> <propertyname="messageSentLogLevel"value="DEBUG"/> <propertyname="sessionCreatedLogLevel"value="DEBUG"/> <propertyname="sessionClosedLogLevel"value="DEBUG"/> <propertyname="sessionIdleLogLevel"value="DEBUG"/> <propertyname="sessionOpenLogLevel"value="DEBUG"/> </bean>
Step 4:Create the filter chain
<beanid="filterChainBuilder" class="org.apache.mina.core.filterchain.DefaultIoFilterChainBuilder"> <propertyname="filters"> <map> <entrykey="codecFilter"value-ref="codecFilter"/> <entrykey="executor"value-ref="executorFilter"/> <entrykey="loggingFilter"value-ref="loggingFilter"/> </map> </property> </bean>
Step 5:Create the message handler
<beanid="minaHandler"class="com.missian.server.handler.MissianHandler"> <constructor-arg> <beanclass="com.missian.common.beanlocate.SpringLocator"/> </constructor-arg> </bean>
Please node that we create an SpringLocator instance and inject it to the MissianHandler, so that the handler can lookup beans in the spring context.
SpringLocator is provided by missian and its source code as below:
publicclassSpringLocatorimplementsBeanLocator,ApplicationContextAware{ privateApplicationContext applicationContext; @Override publicObject lookup(String beanName){ return applicationContext.getBean(beanName); } @Override publicvoid setApplicationContext(ApplicationContext applicationContext) throwsBeansException{ this.applicationContext = applicationContext; } }
Step 6: Mina NioSocketAcceptor
<beanid="minaAcceptor"class="org.apache.mina.transport.socket.nio.NioSocketAcceptor" init-method="bind"destroy-method="unbind"> <propertyname="defaultLocalAddress"value=":1235"/><!----> <propertyname="handler"ref="minaHandler"/> <propertyname="reuseAddress"value="true"/> <propertyname="filterChainBuilder"ref="filterChainBuilder"/> </bean>
Step 7:Create business beans
Create an interface, for example:
publicinterfaceHello{ publicString hello(String name,int age); }
Implements the business interface
publicclassHelloImplimplementsHello{ @Override publicString hello(String name,int age){ return"hi, "+name+", "+age; } }
And now configure this business implementation in spring:
<beanid="hello"class="com.missian.example.bean.HelloImpl"></bean>
Step 8:Startup the server
publicstaticvoid main(String[] args){ newClassPathXmlApplicationContext("com/missian/example/server/withspring/applicationContext-*.xml"); }
相关推荐
弥赛亚(Missian)是一个基于Java开发的远程过程调用(RPC)框架,它以无模式风格设计,旨在提供轻量级、高效且易于使用的跨进程通信解决方案。在了解这个框架之前,我们首先需要理解RPC的基本概念。RPC允许一个程序...
6. **Missian ActiveMQ-JMS简单实例**:这可能是一个具体的项目实例,它展示了如何在Spring应用中使用ActiveMQ实现异步RPC(远程过程调用)。在这种模式下,一个服务通过消息将请求发送到队列,另一端的服务监听队列...
Java-美妆神域_3rm1m18i_221-wx.zip
51单片机的温度监测与控制(温控风扇)
电赛案例,C++简单的智能家居系统,其中包含了温度监测、光照控制和报警系统。该系统可以: 监控室内温度:当温度超过设定阈值时,触发警报。 自动调节光照:根据光线传感器的值自动调节LED灯的亮度。 入侵检测:通过红外传感器检测入侵,并触发警报。
圣诞树 html版 可修改祝福语。 记事本或vscode编辑html文件:ctrl+F寻找”myLabels“关键词,定位到该处即可修改祝福语
【资源说明】 基于python编写的selenium自动化测试框架,采用PO模式,页面元素采用yaml进行管理资料齐全+详细文档+高分项目+源码.zip 【备注】 1、该项目是个人高分项目源码,已获导师指导认可通过,答辩评审分达到95分 2、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 3、本项目适合计算机相关专业(人工智能、通信工程、自动化、电子信息、物联网等)的在校学生、老师或者企业员工下载使用,也可作为毕业设计、课程设计、作业、项目初期立项演示等,当然也适合小白学习进阶。 4、如果基础还行,可以在此代码基础上进行修改,以实现其他功能,也可直接用于毕设、课设、作业等。 欢迎下载,沟通交流,互相学习,共同进步!
屏幕截图 2024-12-21 170434
基于SpringBoot的学生信息管理系统(前后端源码+数据库+文档+运行截图) 学生信息管理 班级信息管理 教师信息管理 课程信息管理 选课信息管理 考勤信息管理 请假信息管理 成绩信息管理 基于SpringBoot的学生信息管理系统(前后端源码+数据库+文档+运行截图) 学生信息管理 班级信息管理 教师信息管理 课程信息管理 选课信息管理 考勤信息管理 请假信息管理 成绩信息管理基于SpringBoot的学生信息管理系统(前后端源码+数据库+文档+运行截图) 学生信息管理 班级信息管理 教师信息管理 课程信息管理 选课信息管理 考勤信息管理 请假信息管理 成绩信息管理基于SpringBoot的学生信息管理系统(前后端源码+数据库+文档+运行截图) 学生信息管理 班级信息管理 教师信息管理 课程信息管理 选课信息管理 考勤信息管理 请假信息管理 成绩信息管理基于SpringBoot的学生信息管理系统(前后端源码+数据库+文档+运行截图) 学生信息管理 班级信息管理 教师信息管理 课程信息管理 选课信息管理 考勤信息管理
径向基函数内核 – 机器学习 内核在将数据转换为更高维空间方面发挥着重要作用,使算法能够学习复杂的模式和关系。在众多的内核函数中,径向基函数(RBF)内核作为一种多功能且强大的工具脱颖而出。在本文中,我们深入探讨了RBF内核的复杂性,探讨了它的数学公式、直观理解、实际应用及其在各种机器学习算法中的重要性。
详细介绍及样例数据:https://blog.csdn.net/samLi0620/article/details/144636765
51单片机控制的智能小车.7z
【资源说明】 基于卷积神经网络的数字手势识别安卓APP,识别数字手势0-10详细文档+全部资料+优秀项目+源码.zip 【备注】 1、该项目是个人高分项目源码,已获导师指导认可通过,答辩评审分达到95分 2、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 3、本项目适合计算机相关专业(人工智能、通信工程、自动化、电子信息、物联网等)的在校学生、老师或者企业员工下载使用,也可作为毕业设计、课程设计、作业、项目初期立项演示等,当然也适合小白学习进阶。 4、如果基础还行,可以在此代码基础上进行修改,以实现其他功能,也可直接用于毕设、课设、作业等。 欢迎下载,沟通交流,互相学习,共同进步!
python 使用sqlserver必须要这个问题,没办法,只能满世界的找地方下载,终于让我下载到了,现在分享给大家使用
四川采矿场生产安全事故管理制度
简约灰粉共存版_8.0.53.apk
ECharts散点图-全国主要城市空气质量(百度地图)
四川采矿场安全检查管理规定
1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于计算机科学与技术等相关专业,更为适合;
空中俯视物体检测9-YOLOv5数据集合集.rar使用YOLO算法从图像中检测对象-V2 2023-05-11 2:51 PM ============================= *与您的团队在计算机视觉项目上合作 *收集和组织图像 *了解和搜索非结构化图像数据 *注释,创建数据集 *导出,训练和部署计算机视觉模型 *使用主动学习随着时间的推移改善数据集 对于最先进的计算机视觉培训笔记本,您可以与此数据集一起使用 该数据集包括1015张图像。 以YOLO V5 PYTORCH格式注释检测对象 - 图像。 将以下预处理应用于每个图像: *像素数据的自动取向(带有Exif-Arientation剥离) *调整大小为640x640(拉伸) 没有应用图像增强技术。