摘要: sPathResource classPathResource = new ClassPathResource("excleTemplate/test.xlsx");InputStream inputStream =classPathResource.getInputStream();第二种File 阅读全文
posted @ 2021-06-04 17:40 甜菜波波 阅读(1562) 评论(0) 推荐(0) 编辑
摘要: 本篇博客我们来自己实现一个类似与其它Spring Boot的starter。最简单的实现吧,不包括任何的业务逻辑。目的是只要引入了我们这个starter,就可以自动配置我们这个项目中的一个Bean(我们的例子中的FooService)。首先肯定是要创建一个Project了,我们直接创建一个Maven 阅读全文
posted @ 2021-06-04 17:12 甜菜波波 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 方式一使用注解的方式导入dubbo-starter在application.properties配置属性使用@Service暴露服务使用@Reference引用服务使用@EnableDubbo开启注解Dubbo功能或者配置包扫描dubbo.scan.base-packages=com.atguigu 阅读全文
posted @ 2021-06-04 15:58 甜菜波波 阅读(2428) 评论(0) 推荐(0) 编辑