上一页 1 2 3 4 5 6 ··· 8 下一页

2019年9月21日

关于通用mapper的weekendCriteria用法

摘要: https://www.cnblogs.com/grey-wolf/p/8435723.html; 阅读全文

posted @ 2019-09-21 19:50 Cherishforchen 阅读(4115) 评论(0) 推荐(0) 编辑

2019年8月23日

@RequestParam和@PathVariable的区别和使用

摘要: 请求路径上的区别:很明显一个是 https:url ?键值对,一个是https:url /参数 ,区别很明显 @PathVariable主要用于接收http://host:port/path/{参数值}数据。@RequestParam主要用于接收http://host:port/path?参数名=参 阅读全文

posted @ 2019-08-23 21:30 Cherishforchen 阅读(6869) 评论(1) 推荐(1) 编辑

2019年8月22日

日志的使用

摘要: spring boot中如何配置https://blog.csdn.net/flysun3344/article/details/80555746 由于spring boot框架的特殊配置,所以无需向ssm框架一样,需要在配置文件中加载logback.xml,只要按照规范来命名就会自动加载 由于日志 阅读全文

posted @ 2019-08-22 20:03 Cherishforchen 阅读(297) 评论(0) 推荐(0) 编辑

2019年8月15日

http和webservice的区别和使用

摘要: 待补充,webservice的好处就是跨平台调用,不是一种语言也可以互相调用,https://www.cnblogs.com/pony1223/p/7847323.html; https://blog.csdn.net/qq_18661793/article/details/52057344 阅读全文

posted @ 2019-08-15 09:23 Cherishforchen 阅读(617) 评论(0) 推荐(0) 编辑

2019年8月13日

过滤器和拦截器

摘要: 参考文章:https://blog.csdn.net/zxd1435513775/article/details/80556034 拦截器过滤器监听器学习小地址:https://www.jianshu.com/p/365a65252bb9;https://www.jianshu.com/p/f216 阅读全文

posted @ 2019-08-13 19:57 Cherishforchen 阅读(408) 评论(0) 推荐(0) 编辑

2019年8月10日

spring注解@PostConstruct

摘要: 该注解可以实现在运行工程时,自动运行该注解下的方法; @PostConstruct是java5的时候引入的注解,指的是在项目启动的时候执行这个方法,也可以理解为在spring容器启动的时候执行,可作为一些数据的常规化加载,比如数据字典之类的。 被@PostConstruct修饰的方法会在服务器加载S 阅读全文

posted @ 2019-08-10 10:53 Cherishforchen 阅读(30802) 评论(0) 推荐(2) 编辑

try catch的使用throws的使用

摘要: unchecked exception和checked exception的区别 所有异常类型都是 Throwable 类的子类,它包含Exception类和Error类,Exception又包括checked exception和unchecked exception。 unchecked exc 阅读全文

posted @ 2019-08-10 09:35 Cherishforchen 阅读(2239) 评论(0) 推荐(0) 编辑

2019年8月4日

消息队列的学习

摘要: https://blog.csdn.net/qq_43154385/article/details/89011224 https://www.jianshu.com/p/824066d70da8(这个讲的很不错) 来个个人通俗的解释吧。消息队列,顾名思义 首先是个队列。队列的操作有入队和出队 也就是 阅读全文

posted @ 2019-08-04 11:22 Cherishforchen 阅读(179) 评论(0) 推荐(0) 编辑

2019年7月30日

classpath路径到底指的哪里

摘要: https://segmentfault.com/a/1190000015802324 classpath 指的是编译后路径即: WEB-INF/classes 项目中java和resources里面文件经过编译后,都会放到 WEB-INF/classes目录下 如下图: java下面的文件和rec 阅读全文

posted @ 2019-07-30 20:28 Cherishforchen 阅读(2532) 评论(0) 推荐(1) 编辑

2019年7月25日

zookeeper集群的部署

摘要: zookeeper的命令: 在bin目录下执行:./zkServer.sh start (启动) ./zkServer.sh status (查看状态) ./zkServer.sh stop(停止服务) 日志在zookeeper,out下。因为我是在bin启动的,所以就在那个下面,好像是这样 部署: 阅读全文

posted @ 2019-07-25 16:03 Cherishforchen 阅读(127) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 8 下一页

导航