相关教程: IDEA快速入门教程(2018图文版)
专题阅读: 《SpringBoot 布道系列》
具体步骤:打开顶部工具栏 File ->Settings ->Default Settings ->Build ->Compiler 然后勾选 Build project automatically 。
具体步骤:同时按住 Ctrl + Shift + Alt + / 然后进入Registry ,勾选自动编译并调整延时参数。
PS:网上极少有人提到compile.document.save.trigger.delay 它主要是针对静态文件如JS CSS的更新,将延迟时间减少后,直接按F5刷新页面就能看到效果!
具体步骤:顶部菜单- >Edit Configurations->SpringBoot插件->目标项目->勾选热更新。
具体步骤:在POM文件添加热部署插件
打开谷歌浏览器,打开F12的Network选项栏,然后勾选【✅】Disable cache 。
热部署到底有多爽呢,用渣渣辉的话来说,只需体验三分钟,你就会干我一样,爱上这款呦西。
1、首先,可以点击上方的 Run 的选项。
2、然后点击 Edit Configurations 这个选项。
3、然后看到这里的 ServiceApplication这个选项。
4、然后选择到Configuration这个选项。
5、然后经常需要设置的为下面的Parameters的选项。
找到 ExecStart,在最后面添加 -H tcp://0.0.0.0:2375,如下图所示
查看端口是否开启,如下图所示:
配置好后页面下方会出现Docker工具栏(如IDEA没有点击view-Tool Windows可调出来)
命令解释:
过程:先pull基础镜像,然后再打包镜像,并将镜像部署到远程docker运行
可以访问到接口
如果是下图,HoastIP不填,其映射结果为 0.0.0.0:8081->8081/tcp ,此时宿主机的8081端口开启,需要这样访问 http://192.168.197.90:8081/api/member/get/113
如果是下图,HoastIP填127.0.0.1,其映射结果为 127.0.0.1:8081->8081/tcp ,此时宿主机的8081端口未对外开放,访问 http://192.168.197.90/api/member/get/113 ,会被nginx反向代理到 http://127.0.0.1:8081/api/member/get/113 ,即可访问接口API
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [com/alibaba/druid/spring/boot/autoconfigure/DruidDataSourceAutoConfigure.class]: Invocation of init method failednested exception is com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
Caused by: java.net.NoRouteToHostException: Host is unreachable (Host unreachable)
解决:打开服务器3306端口
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)