【转载记录】netty+spring整合案例

本文章转载自:http://www.itstack.org/?post=14

前言介绍:

    本案例主要介绍如何把Netty服务端的启动交给Spring,让web启动的时候把Netty服务端也随之启动起来。

    如果有对Spring的不理解,可以自行补充学习。

环境需求:

    1、jdk1.7

    2、MyEclipse8.5【jdk配置到1.7】

    3、tomcat1.7

    4、Netty5.0

    5、网络调试助手

    6、Spring需要Jar包;

        commons-logging-1.1.1.jar

         servlet-api-3.0-alpha-1.jar

         spring-aop-3.2.0.RELEASE.jar

         spring-beans-3.2.0.RELEASE.jar

         spring-context-3.2.0.RELEASE.jar

         spring-core-3.2.0.RELEASE.jar

         spring-expression-3.2.0.RELEASE.jar

         spring-tx-3.1.1.RELEASE.jar

         spring-web-3.2.0.RELEASE.jar

工程截图:


代码部分:

    *代码部分比较简单,而且工程可以在下面下载


Spring后直接实例化NettyExecutorService


 
  
  1. package com.itstack.service;
  2.  
  3. import java.util.concurrent.ExecutorService;
  4. import java.util.concurrent.Executors;
  5.  
  6. import org.springframework.stereotype.Service;
  7.  
  8. import com.itstack.netty.NettyServer;
  9.  
  10. @Service
  11. public class NettyExecutorService {
  12. public NettyExecutorService() {
  13. //为了颜色一致,我们用管理Err输出
  14. System.err.println("---------- Spring自动加载 ---------- ");
  15. System.err.println("---------- 启动Netty线程池 ---------- ");
  16. /* 说明
  17. * 如果此处不用线程池,直接用server.run()启动【直接调用方法而已】
  18. * 那么你会看到tomcat启动过程中,在启动了Netty后就会一直等待连接
  19. */
  20. NettyServer server = new NettyServer();
  21. //线程池
  22. ExecutorService es = Executors.newCachedThreadPool();
  23. //启动线程池
  24. es.execute(server);
  25. }
  26. }


配置文件:

spring.xml


 
  
  1. xml version="1.0" encoding="UTF-8"?>
  2. xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
  4. xsi:schemaLocation="
  5. http://www.springframework.org/schema/beans
  6. http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  7. http://www.springframework.org/schema/context
  8. http://www.springframework.org/schema/context/spring-context-3.0.xsd
  9. ">
  10.  
  11. base-package="com.itstack" />



web.xml


 
  
  1. xml version="1.0" encoding="UTF-8"?>
  2. version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
  5. http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
  6.  
  7. contextConfigLocation
  8. classpath:spring.xml
  9.  
  10. 字符集过滤器
  11. encodingFilter
  12. org.springframework.web.filter.CharacterEncodingFilter
  13. 字符集编码
  14. encoding
  15. UTF-8
  16. encodingFilter
  17. /*
  18.  
  19. spring监听器
  20. org.springframework.web.context.ContextLoaderListener
  21. org.springframework.web.util.IntrospectorCleanupListener
  22. 15
  23.  
  24. index.jsp



测试运行:

1、启动tomcat

2、控制台输出:【重要部分】

3、开启网络调试助手,连接服务端7397

4、控制台输出:

/192.168.2.103:7397 channelActive
ee8ed924Thu Jan 01 10:06:29 CST 2015 http://www.itstack.org
ee8ed924Thu Jan 01 10:06:29 CST 2015 http://www.itstack.org
ee8ed924Thu Jan 01 10:06:30 CST 2015 http://www.itstack.org
ee8ed924Thu Jan 01 10:06:31 CST 2015 http://www.itstack.org
ee8ed924Thu Jan 01 10:06:31 CST 2015 http://www.itstack.org
ee8ed924Thu Jan 01 10:06:32 CST 2015 http://www.itstack.org
ee8ed924Thu Jan 01 10:06:32 CST 2015 http://www.itstack.org
ee8ed924Thu Jan 01 10:06:32 CST 2015 http://www.itstack.org
/192.168.2.103:7397 channelInactive


源码下载:

NettySpring.zip

你可能感兴趣的:(java)