Hello World Dubbox。以及第一个dubbox错误 No provider available for the service

刚开始学习,duboox。这是使用dubbox的第一个错误。

创建两个maven工程。分别为dubboxdemo-service和dubboxdemo-web

dubboxdemo-service

    如下:

        Hello World Dubbox。以及第一个dubbox错误 No provider available for the service_第1张图片

UserService:

package com.dubboxdemo.service;

public interface UserService {
	
	public String getName();
}

UserServiceImpl:  

package com.dubboxdemo.service.impl;

import com.alibaba.dubbo.config.annotation.Service;
import com.dubboxdemo.service.UserService;

@Service
public class UserServiceImpl implements UserService {

	@Override
	public String getName() {
		return "hello world";
	}

}

applicationContext-service.xml:

    



     
	  
	 
	


dubboxdemo-web---

    Hello World Dubbox。以及第一个dubbox错误 No provider available for the service_第2张图片

    UserController    

package com.dubboxdemo.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import com.alibaba.dubbo.config.annotation.Reference;
import com.dubboxdemo.service.UserService;

@Controller
@RequestMapping("/user")
public class UserController {
	
	@Reference
	private UserService userService;

	@RequestMapping("/showName")
	@ResponseBody
	public String showName() {
		return userService.getName();
	}
}

UserService:

package com.dubboxdemo.service;

public interface UserService {
	
	public String getName();
}

springmvc.xml:




	
		
			  
				
			  
			
	
	
	
	
	
    

期间出现了一个错误No provider available for the service

是因为在包扫描的时候路径错误了。不仔细的问题。

依次启动service和web,在浏览器输入web的地址。会得到hello world.


你可能感兴趣的:(dubbo)