码迷,mamicode.com
首页 > Web开发 > 详细

taotao-manager-web 表现层工程的配置与开发

时间:2020-04-06 13:31:48      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:test   ack   string   alt   tao   public   class   imp   img   

技术图片

 

TestController.java

package com.taotao.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 com.taotao.service.TestService;

/**
 * 查询当前的时间
 */
@Controller
public class TestController {
	
	@Autowired
	private TestService testservice;
	
	@RequestMapping("/test/qureyNow")
	@ResponseBody
	public String queryNow(){
		//1.引入服务 :在springmvc.xml中"引用dubbo服务"
		//2.注入服务
		//3.调用服务的方法
		return testservice.queryNow();
	}
	
}

  

技术图片

 

Dubbo原理

技术图片

 

技术图片

 

taotao-manager-web 表现层工程的配置与开发

标签:test   ack   string   alt   tao   public   class   imp   img   

原文地址:https://www.cnblogs.com/yuyu666/p/12641660.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!