摘要:
一、创建springboot_dubbo_provider项目 1 创建service层接口 public interface IDoSomeService { public String sayHi(); } 2 创建service层接口实现类 //利用Dubbo暴露出一个接口 @Service(
阅读全文
posted @ 2019-12-14 14:12
Baekhyunne
阅读(221)
推荐(0)
编辑
摘要:
1 创建entity实体类 public class Student { private Integer stuid; private String stuname; public Integer getStuid() { return stuid; } public void setStuid(I
阅读全文
posted @ 2019-12-14 11:06
Baekhyunne
阅读(250)
推荐(0)
编辑
摘要:
1 创建实体类 public class Student { private Integer stuid; private String stuname; public Integer getStuid() { return stuid; } public void setStuid(Integer
阅读全文
posted @ 2019-12-14 09:45
Baekhyunne
阅读(350)
推荐(0)
编辑