最近在学习spring cloud,跟着视频添加run dashboard,发现里面介绍的方法无法适用于idea community(社区版)。
然后自己研究了一下,成功添加,下面分享自己的方法。
如图,我的项目里添加了两个module,我想通过run dashboard同时启动这两个module
注:每个module都有@SpringBootApplication主方法
pom:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>
1.如图找到View -> Tool Windows -> Services
2.找到左下角的Services面板,点击Add Service -> Run Configuration Type
3. 选择Application
4. module就自动出现在面板中了,点击Run. (鼠标选中Application再Run,就会启动下面的所有module,选中某一个module则只会启动选中的那个)
注:如果Application下面没有module,可以单独Run一下module:
再重新Add Service -> Application 就可以看到了
5. 这时我们能看到两个module都同时启动啦
文章来源:https://www.toymoban.com/news/detail-820603.html
虽然不是出现 Run Dashboard按钮,但是效果是一样的。如果你也使用idea community,希望能帮到你。文章来源地址https://www.toymoban.com/news/detail-820603.html
到了这里,关于Idea Community社区版如何添加Run Dashboard的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!