• 大小: 101KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-02
  • 语言: 其他
  • 标签: spring  netty  整合netty  

资源简介

疯狂创客圈原创案例: spring netty 整合 源代码 ,一个完整的maven 工程,可以开箱就跑

资源截图

代码片段和文件信息

package com.crazymakercircle.nettydemo.client;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

@Configuration
//自动加载配置信息
@EnableAutoConfiguration
//使包路径下带有@Value的注解自动注入
//使包路径下带有@Autowired的类可以自动注入
@ComponentScan(“com.crazymakercircle.nettydemo.client“)
@SpringBootApplication
public class ClientApp
{

    /**
     * @param args
     */
    public static void main(String[] args)
    {
        // 启动并初始化 Spring 环境及其各 Spring 组件
        ApplicationContext

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-11-08 21:13  .git\
     文件           7  2018-11-07 23:36  .git\COMMIT_EDITMSG
     文件          23  2018-11-07 20:14  .git\HEAD
     文件         303  2018-11-07 20:14  .git\config
     文件          73  2018-11-07 20:14  .git\description
     目录           0  2018-11-07 20:14  .git\hooks\
     文件         478  2018-11-07 20:14  .git\hooks\applypatch-msg.sample
     文件         896  2018-11-07 20:14  .git\hooks\commit-msg.sample
     文件        3327  2018-11-07 20:14  .git\hooks\fsmonitor-watchman.sample
     文件         189  2018-11-07 20:14  .git\hooks\post-update.sample
     文件         424  2018-11-07 20:14  .git\hooks\pre-applypatch.sample
     文件        1638  2018-11-07 20:14  .git\hooks\pre-commit.sample
     文件        1348  2018-11-07 20:14  .git\hooks\pre-push.sample
     文件        4898  2018-11-07 20:14  .git\hooks\pre-rebase.sample
     文件         544  2018-11-07 20:14  .git\hooks\pre-receive.sample
     文件        1492  2018-11-07 20:14  .git\hooks\prepare-commit-msg.sample
     文件        3610  2018-11-07 20:14  .git\hooks\update.sample
     文件        1506  2018-11-07 23:36  .git\index
     目录           0  2018-11-07 20:14  .git\info\
     文件         240  2018-11-07 20:14  .git\info\exclude
     目录           0  2018-11-07 21:14  .git\logs\
     文件         452  2018-11-07 23:36  .git\logs\HEAD
     目录           0  2018-11-07 21:59  .git\logs\refs\
     目录           0  2018-11-07 21:14  .git\logs\refs\heads\
     文件         452  2018-11-07 23:36  .git\logs\refs\heads\master
     目录           0  2018-11-07 21:59  .git\logs\refs\remotes\
     目录           0  2018-11-07 21:59  .git\logs\refs\remotes\origin\
     文件         280  2018-11-07 23:37  .git\logs\refs\remotes\origin\master
     目录           0  2018-11-07 23:36  .git\objects\
     目录           0  2018-11-07 21:14  .git\objects\04\
     文件          46  2018-11-07 21:14  .git\objects\04\4da5db54fccddb7de732c716fb491f87610e87
............此处省略198个文件信息

评论

共有 条评论