dubbo 快速启动-结合spring注解使用做微服务

开始

是在之前的项目上
https://blog.csdn.net/ko0491/article/details/85166785

provider更改

新建spring.xml


dubbo 快速启动-结合spring注解使用做微服务_第1张图片
在这里插入图片描述


    
    
    
    
        
    

service-provider改变




    

    
    
    

    
    

    
    

    
    

dubbo 快速启动-结合spring注解使用做微服务_第2张图片
在这里插入图片描述

在provicer实现的service上加注解@Servcie


dubbo 快速启动-结合spring注解使用做微服务_第3张图片
在这里插入图片描述
package com.ghgcn.dubbo.service.impl;

import org.springframework.stereotype.Service;

import com.ghg.dubbo.api.GreetingService;

@Service("greetingService") //名称
public class GreetingServiceImpl implements GreetingService {

    @Override
    public String sayHello(String name) {
        return "Hello " + name;
    }

}

main启动类改变

第一版

package com.ghgcn.dubbo;

import java.io.IOException;

import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Main {

   public static void main(String[] args) throws IOException {
       // com.alibaba.dubbo.container.Main.main(args);
       ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(
               new String[]{ "META-INF/spring/service-provider.xml" });
       context.start();
       System.out.println("provider启动了");
       System.in.read(); // press any key to exit
   }

}

第二版

package com.ghgcn.dubbo;

import java.io.IOException;

import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Main {

    public static void main(String[] args) throws IOException {
        // com.alibaba.dubbo.container.Main.main(args);
        //
        // ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(
        // new String[]{ "META-INF/spring/service-provider.xml" });
        /**
         * 使用spring文件
         */
        ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(
                new String[]{ "META-INF/spring/spring.xml" });
        context.start();
        System.out.println("provider启动了");
        System.in.read(); // press any key to exit
    }

}

dubbo 快速启动-结合spring注解使用做微服务_第4张图片
在这里插入图片描述

正常启动

consumer改造

新建spring.xml


dubbo 快速启动-结合spring注解使用做微服务_第5张图片
在这里插入图片描述

spring.xml



    
    
    
    
    
    

dubbo-client.xml 无更改




    

    
    

    
    

新建helloService与实现类

dubbo 快速启动-结合spring注解使用做微服务_第6张图片
在这里插入图片描述
package com.ghgcn.consumer.service;

public interface HelloService {

    String sayHello(String name);
}

package com.ghgcn.consumer.service.impl;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import com.ghg.dubbo.api.GreetingService;
import com.ghgcn.consumer.service.HelloService;

/**
 * 加注解service
 * 
 * @author Administrator
 */
@Service
public class HelloServiceImpl implements HelloService {

    /**
     * 可以作 @Resource @Autowired等psring注解
     */
    @Autowired
    private GreetingService greetingService;

    @Override
    public String sayHello(String name) {

        return greetingService.sayHello(name);
    }

}

main方法启动更改

第一版

package com.ghgcn.consumer;

import java.util.Date;

import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.ghg.dubbo.api.GreetingService;

public class Main {

    public static void main(String[] args) {
        ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(
                new String[]{ "sping/dubbo-client.xml" });
        context.start();
        GreetingService greetingService = (GreetingService) context.getBean("greetingService"); // get remote service

        while (true) {
            try {
                Thread.sleep(1000);
                System.out.println(greetingService.sayHello("刘楠* " + new Date()));
            } catch (Throwable throwable) {
                throwable.printStackTrace();
            }

        }
    }

}

第二版

package com.ghgcn.consumer;

import java.util.Date;

import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.ghgcn.consumer.service.HelloService;

public class Main2 {

    public static void main(String[] args) {
        ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(new String[]{ "sping/spring.xml" });
        context.start();
        HelloService helloService = context.getBean(HelloService.class);

        while (true) {
            try {
                Thread.sleep(1000);
                System.out.println(helloService.sayHello("刘楠* " + new Date()));
            } catch (Throwable throwable) {
                throwable.printStackTrace();
            }

        }
    }

}


dubbo 快速启动-结合spring注解使用做微服务_第7张图片
在这里插入图片描述

启动正常

dubbo 快速启动-结合spring注解使用做微服务_第8张图片
在这里插入图片描述

dubbo 快速启动-结合spring注解使用做微服务_第9张图片
在这里插入图片描述

结合spring可以做微服务很方便
github : https://github.com/ln0491/dubbo-demo

你可能感兴趣的:(dubbo 快速启动-结合spring注解使用做微服务)