springboot
小纯洁.
既不想上班又想躺着数钱..
展开
-
springboot-freemarker?
freemarker是啥?freemarker是一款模板引擎,在服务器端渲染.同款有:thymeleaf jsp and so on.废话不说,直接干活:1,依赖,打开pom.xml 添加依赖<!--freemarker依赖--><dependency> <groupId>org.springframework.boot</gr...原创 2018-10-20 01:09:07 · 160 阅读 · 0 评论 -
springboot之druid
#-----------h2数据库配置 http://localhost:8080/h2-console#---控制台配置spring.h2.console.path=/h2-consolespring.h2.console.enabled=truespring.h2.console.settings.web-allow-others=true#-----驱动配置 druid http...原创 2018-10-21 00:07:47 · 855 阅读 · 0 评论 -
springcloud之eureka用户密码配置之血案
搭建eureka很简单1:新建springboot项目 不多说了2:pom如下3:启动类如下4:配置文件如下:server: port: 8761spring: application: name: eurekasecurity: user: name: admin password: admin@123eureka: i...原创 2018-11-15 22:13:33 · 3550 阅读 · 1 评论 -
springboot之不可少的热编译
使用springboot的童鞋肯定是冲着开箱即用快速开发来的,不过当然有着糟心事, 为什么每次修改代码都要重启呢?项目小的话还好,项目大一些重启也是慢的一匹. so 怎么办呢?咱往下看:devtool是个好东西哟,pom加入如下依赖<dependency> <groupId>org.springframework.boot</groupId> ...原创 2018-12-05 14:54:40 · 777 阅读 · 0 评论 -
springboot2x整合dubbo
关于本次整合:本来是想做个商城项目来着,简单搭起来又懒得搞了,所以什么都没有,只是个架子,只是听说还有人不会,emmm比较以前新手的时候我也不会,哈哈哈,就放出来了,给大家参考下。其实搭建springboot+dubbo没什么难的,只是现在版本更新太快,导致很多时候是在处理版本不一致不能配合使用导致的问题。额,关于springcloud全家桶的话,就不用看了,这次没有。以下是项目截图...原创 2019-07-04 13:06:37 · 243 阅读 · 0 评论