blob: 276c6528ef7bc0c2aae63df53d90b77a33e3ec2e [file] [log] [blame]
package com.alibaba.dubbo.test.service.impl;
import com.alibaba.dubbo.config.annotation.Service;
import com.alibaba.dubbo.test.service.AnnotateService;
/**
* Created by ken.lj on 2017/9/19.
*/
@org.springframework.stereotype.Service
@Service
public class AnnotateServiceImpl implements AnnotateService {
@Override
public String sayHello() {
return "Hello";
}
}