農農  

2019年12月14日

摘要: 一、创建springboot_dubbo_provider项目 1 创建service层接口 public interface IDoSomeService { public String sayHi(); } 2 创建service层接口实现类 //利用Dubbo暴露出一个接口 @Service( 阅读全文
posted @ 2019-12-14 14:12 Baekhyunne 阅读(219) 评论(0) 推荐(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 阅读(246) 评论(0) 推荐(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 阅读(326) 评论(0) 推荐(0) 编辑