摘要: 目录 我是菠萝 技术博客 学习网址 日常网址 回到顶部 我是菠萝 姓名:Anny 昵称:菠萝 回到顶部 技术博客 收藏的一些技术博客网址: xingoo http://www.cnblogs.com/xing901022 常明 http://www.imooc.com/article/3585 孙飞 阅读全文
posted @ 2015-12-10 15:40 菠萝小妹。 阅读(442) 评论(11) 推荐(0) 编辑
摘要: pom文件 重新启动程序: 详细参考以下博客 https://blog.csdn.net/qq_35915384/article/details/80203768、 一种简洁可视化的监控报表spring-boot-admin 服务端: 新创建一个spring-boot项目 https://githu 阅读全文
posted @ 2019-06-14 14:15 菠萝小妹。 阅读(611) 评论(0) 推荐(0) 编辑
摘要: package com.example.demo.exception; import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.b... 阅读全文
posted @ 2019-06-14 13:54 菠萝小妹。 阅读(344) 评论(0) 推荐(0) 编辑
摘要: application-{profile}.properties 按照格式创建两个配置文件,一个DEV环境,一个测试环境 修改其端口: 阅读全文
posted @ 2019-06-12 16:17 菠萝小妹。 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 详解传送门:https://www.cnblogs.com/warking/p/5710303.html 阅读全文
posted @ 2019-06-12 16:01 菠萝小妹。 阅读(810) 评论(0) 推荐(0) 编辑
摘要: 第一种: server.port=0 第二种: //自定义一个范围 server.port=${random.int[1024,9999]} 阅读全文
posted @ 2019-06-12 14:57 菠萝小妹。 阅读(913) 评论(0) 推荐(0) 编辑
摘要: 它表示当前pom文件从spring-boot-starter-parent继承下来,在spring-boot-starter-parent中提供了很多默认的配置,这些配置可以大大简化我们的开发。 通过继承spring-boot-starter-parent,默认具备了如下功能: Java版本(Jav 阅读全文
posted @ 2019-06-12 14:04 菠萝小妹。 阅读(5823) 评论(0) 推荐(0) 编辑
摘要: spring-boot项目 配置MYSQL驱动 maven pom文件中增加依赖 在application.properties中加入配置(注:我的密码数据库密码是空) 在数据库中,新建一张表,放入一丢丢的数据(注意:设计表时,要改表的字符集,排序规则,否则乱码) 在项目中DemoApplicati 阅读全文
posted @ 2019-06-11 15:45 菠萝小妹。 阅读(29787) 评论(1) 推荐(0) 编辑
摘要: 循环队列 阅读全文
posted @ 2019-04-08 11:09 菠萝小妹。 阅读(232) 评论(0) 推荐(0) 编辑
摘要: [数据结构]-链表实现队列 如有问题,请指出呀。感谢。 阅读全文
posted @ 2019-04-04 15:26 菠萝小妹。 阅读(178) 评论(0) 推荐(0) 编辑
摘要: [数据结构]-数组实现队列(普通) 1 首指针 2 尾指针 不是循环队列,将前方空出来的位置,依次向前移动 阅读全文
posted @ 2019-04-04 14:27 菠萝小妹。 阅读(185) 评论(0) 推荐(0) 编辑