黑马程序员技术交流社区

标题: 【郑州校区】Java之品优购课程讲义_day01(5) [打印本页]

作者: 谷粒姐姐    时间: 2018-7-25 12:03
标题: 【郑州校区】Java之品优购课程讲义_day01(5)
3.2.1 服务消费者开发
开发步骤:
1)创建 Maven 工程(WARdubboxdemo-web ,在 pom.xml 引入依赖 ,同“dubboxdemo-
service工程。区别就是把 tomcat 插件的运行端口改为 8082  
2)在 webapps 目录下创建 WEB-INF 目录,并创建 web.xml
3)拷贝业务接口
将“dubboxdemo-service”工程的  cn.itcast.dubboxdemo.service  包以及下面的接口拷贝至此工程。
(4)编写 Controller
[AppleScript] 纯文本查看 复制代码
package  cn.itcast.dubboxdemo.controller;


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


import  org.springframework.stereotype.Controller;


import  org.springframework.web.bind.annotation.RequestMapping; import  org.springframework.web.bind.annotation.ResponseBody; import  cn.itcast.dubbodemo.service.UserService;
@Controller @RequestMapping("/user") public  class  UserController  {
@Reference


private  UserService  userService; @RequestMapping("/showName") @ResponseBody
public  String  showName(){


return  userService.getName();


}


}
5)编写 spring 配置文件
src/main/resources 下创建 applicationContext-web.xml
[AppleScript] 纯文本查看 复制代码
<?xml  version="1.0"  encoding="UTF-8"?>
<beans  xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"

[AppleScript] 纯文本查看 复制代码
xmlns:context="http://www.springframework.org/schema/context"


xmlns:dubbo="http://code.alibabatech.com/schema/dubbo" xmlns:mvc="http://www.springframework.org/schema/mvc"

xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd

http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd

http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd

http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">



<mvc:annotation-driven  >


<mvc:message-converters  register-defaults="false">


<bean class="org.springframework.http.converter.StringHttpMessageConverter">

<constructor-arg  value="UTF-8"  />


</bean>


</mvc:message-converters>


</mvc:annotation-driven>

<!-- 引 用 dubbo 服 务 -->

<dubbo:application  name="dubboxdemo-web"  />


<dubbo:registry  address="zookeeper://192.168.25.132:2181"/>


<dubbo:annotation  package="cn.itcast.dubboxdemo.controller"  />


</beans>

6)测试运行
tomcat7:run
在浏览器输入 http://localhost:8082/user/showName.do,查看浏览器输出结果








欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2