bingmous

欢迎交流,不吝赐教~

导航

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

2022年9月3日 #

Nginx

摘要: 2022-08-15 22:06:21 星期一 2022-09-03 18:23:18 星期六 安装部署nginx 操作系统安装: centos7 mini版,修改网络配置文件,重启网络服务,查看ip命令ip addr 常用版本: 开源版本,http://nginx.org/ nginx plus商 阅读全文

posted @ 2022-09-03 18:24 Bingmous 阅读(33) 评论(0) 推荐(0) 编辑

2022年8月14日 #

RabbitMQ学习笔记

摘要: 官网:https://www.rabbitmq.com/ 相关概念 什么是MQ? Message Queue,消息队列,FIFO,队列中存储的是message,是一种跨进程的通信机制,用于上下游传递消息。在互联网架构中,是一种非常常见的“逻辑解耦 + 物理解耦”的消息通信服务。使用MQ,消息发送只需 阅读全文

posted @ 2022-08-14 22:18 Bingmous 阅读(138) 评论(0) 推荐(0) 编辑

2022年7月24日 #

SpringBoot学习笔记

摘要: 前置要求:spring、springMVC、maven Spring与SpringBoot简介 spring能做什么:https://spring.io/why-spring spring生态:https://spring.io/projects/spring-boot ,涵盖web开发、数据访问、 阅读全文

posted @ 2022-07-24 23:39 Bingmous 阅读(62) 评论(0) 推荐(0) 编辑

2022年7月9日 #

SpringMVC学习笔记

摘要: javaSE -> JavaWeb -> SSM(SpringMVC、Spring、MyBatis) -> JavaEE -> SpringBoot、SpringCloud 涉及的spring模块: spring-webmvc(包含了aop、bean、context、core、expression、 阅读全文

posted @ 2022-07-09 20:59 Bingmous 阅读(30) 评论(0) 推荐(0) 编辑

2022年7月2日 #

idea tomcat 输出乱码问题

摘要: 配置idea:Help -> Edit Custom VM Options,增加-Dfile.encoding=UTF-8,tomcat的日志输出就不乱码了 tomcat启动配置:VM Options:-Dfile.encoding=UTF-8,tomcat server out就不乱码了 阅读全文

posted @ 2022-07-02 14:42 Bingmous 阅读(16) 评论(0) 推荐(0) 编辑

2022年7月1日 #

idea tomcat启动后没有编译java文件

摘要: 在项目结构artifact处,Available Elements右键项目,选择Put into Output Root,就会将依赖和classes编译到out目录 需要重启idea 阅读全文

posted @ 2022-07-01 00:27 Bingmous 阅读(761) 评论(0) 推荐(0) 编辑

2022年6月29日 #

JavaWeb学习笔记

摘要: 站得高,看得远,从设计框架的角度出发去思考问题。 源码不能只看,一定要上手。 HTML html语言是解释型语言,不是编译型,浏览器是容错的,写错了浏览器也会解析。 html页面中由一对标签组成:<html>开始标签,</html>结束标签 html中有<head>标签和<body>标签 head标 阅读全文

posted @ 2022-06-29 21:50 Bingmous 阅读(58) 评论(0) 推荐(0) 编辑

2022年6月5日 #

Ansible学习笔记

摘要: 相关资料 官网:https://www.ansible.com/ 官方文档:https://docs.ansible.com/ 官方文档:https://docs.ansible.com/ansible/2.9/index.html 官方Galaxy参考:http://galaxy.ansible. 阅读全文

posted @ 2022-06-05 20:28 Bingmous 阅读(372) 评论(0) 推荐(0) 编辑

2022年5月14日 #

Flink编译指定版本hadoop依赖

摘要: 准备工作 官方文档:https://nightlies.apache.org/flink/flink-docs-release-1.11/ops/deployment/hadoop.html flink-shaded源码地址:https://github.com/apache/flink-shade 阅读全文

posted @ 2022-05-14 11:35 Bingmous 阅读(401) 评论(0) 推荐(0) 编辑

2022年4月13日 #

Flink问题总结

摘要: 多线程提交多个flinkJob 如果代码只是flinkJob代码,要保证创建多个线程的这个线程(main)在代码执行结束前完成flinkJob的提交(main线程sleep 10s),否则main线程退出,提交flinkJob的线程还没有完成提交那么这些线程就会退出。在main线程退出后,这些子线程 阅读全文

posted @ 2022-04-13 22:10 Bingmous 阅读(402) 评论(0) 推荐(0) 编辑

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