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

Posted 尐鱼儿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了taotao-manager-web 表现层工程的配置与开发相关的知识,希望对你有一定的参考价值。

 

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 表现层工程的配置与开发的主要内容,如果未能解决你的问题,请参考以下文章

淘淘商城系列——使用maven tomcat插件启动web工程

taotao商城遇到的问题

基于soa的架构

分布式系统 --SOA

基于dubbo的SOA项目改造

Maven基础