Coder Social home page Coder Social logo

document's Introduction

document

---------------------------------------------------------------idea--------------------------------------------------------------

1:IDEA 打war包
https://blog.csdn.net/qq_34872748/article/details/100390922
2:idea中maven项目bulid时报错
https://www.oschina.net/question/2410767_2138421
3:idea 修改jsp文件不生效问题
https://www.cnblogs.com/yuchencui/p/10937789.html
4:git clone下载速度很慢的解决方法
https://blog.csdn.net/MENGHUANBEIKE/article/details/74001756?depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromBaidu-1&utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromBaidu-1
5:使用git将项目上传到github(最简单方法)
https://www.cnblogs.com/cxk1995/p/5800196.html
6:idea tomcat配置
https://www.cnblogs.com/yayazi/p/7920257.html
7:Intellij IDEA 部署Web项目,解决 404 错误
https://blog.csdn.net/eaphyy/article/details/72513914
8:IDEA git导入maven项目
https://blog.csdn.net/liubin5620/article/details/80364634
9:idea登录github账户报错
https://blog.csdn.net/qq_40202111/article/details/104828365
10:IDEA 不编译
https://blog.csdn.net/baidu_38116275/article/details/79889936
11:IDEA部署项目到tomcat时artifact中没有项目
https://jingyan.baidu.com/article/0aa2237511ba0088cc0d64de.html
12:idea激活
https://shimo.im/docs/WgCXhcrkWy8HVCVG
14:idea maven 配置
https://www.cnblogs.com/Silencepeng/p/7444012.html
15:idea 修改访问项目名称
https://blog.csdn.net/weixin_30487317/article/details/98637320
16:idea 修改打war包名称
右键,rename 回车即可
17:ide常用插件
https://juejin.im/post/5eba9a5bf265da7bca50010c
18:RestfulToolkit(接口自测工具)
https://blog.csdn.net/qq_22741461/article/details/81625079
19:linux磁盘满的情况处理(清磁盘)
https://blog.csdn.net/u014520797/article/details/80840214
20:解决catalina.out文件过大的问题
https://blog.csdn.net/GX_1_11_real/article/details/80204475
---------------------------------------------------------------linux--------------------------------------------------------------
1:创建用户并授数据库权限等操作 //新建用户 admin 密码为123456
create user admin identified by '123456';
//查看用户权限
show grants for admin;
//创建数据库
create database if not exists dbname;
//给test数据库权限赋给admin用户
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP ON test.* TO 'admin'@'%'
————————————————
2:用具体ip登录mysql数据库 mysql -P 3306 -h ipname -u username -p ipname 为具体的ip名称 username为具体的登录用户名称 3:备份数据库脚本
mysqldump -u root -p database >database.sql
4:防火墙添加3306端口
 firewall-cmd --zone=public --add-port=3306/tcp --permanent
查看开放端口:
firewall-cmd --zone=public --list-ports
从新载入:
firewall-cmd --reload
5:自己动手搭建Nexus(maven私服)
https://www.jianshu.com/p/1cfbc1518fce

---------------------------------------------------------------Nginx--------------------------------------------------------------
Nginx 实战应用
https://www.jianshu.com/p/9fd8533638ad

---------------------------------------------------------------REDIS--------------------------------------------------------------
1:redis基本操作,基本命令
https://www.runoob.com/redis/redis-strings.html
2:redis服务器安装详细步骤
https://www.cnblogs.com/happywish/p/10944253.html

---------------------------------------------------------------GIT--------------------------------------------------------------
1:git 用命令下载代码到本地
https://blog.csdn.net/jxg1473819657/article/details/83656939
2:github上拉取代码执行 npm install报错code:128
https://www.cnblogs.com/minutes/p/11692474.html
3:git拉取代码出现Unpacking objects https://blog.csdn.net/weixin_39386145/article/details/88905238

---------------------------------------------------------------MYSQL--------------------------------------------------------------
1:根据日期范围显示该范围内的所有日期(统计场景用的多) select a.assigned_date AS "bizDate",b.id,b.umid,b.gameName,b.logo FROM ( select date_format(assigned_date,'%Y-%m-%d') assigned_date from (select adddate('2011-01-01',t3.i1000 + t2.i100 + t1.i*10 + t0.i) assigned_date from (select 0 i union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t0, (select 0 i union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t1, (select 0 i union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t2, (select 0 i union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t3 ) c where assigned_date between DATE_FORMAT(#{startDate}, '%Y-%m-%d') and DATE_FORMAT(#{endDate}, '%Y-%m-%d') )a cross join ( select game.id AS "id",game.umid AS "umid",game.name AS "gameName",game.logo AS "logo" FROM ly_biz_game game

	<where>
		AND game.channel_type=#{channelType}
		AND game.del_flag=0
		<if test="gameName != null and gameName != ''">
			AND game.name LIKE
			<if test="dbName == 'oracle'">'%'||#{gameName}||'%'</if>
			<if test="dbName == 'mssql'">'%'+#{gameName}+'%'</if>
			<if test="dbName == 'mysql'">concat('%',#{gameName},'%')</if>
		</if>
	</where>
	)b
	ORDER BY a.assigned_date desc

2:MYSQL索引优化
https://juejin.im/post/5ec4e4a5e51d45786973b357

--------------------------------------------------------------系统相关--------------------------------------------------------------
1:https://msdn.itellyou.cn/
2:https://www.laomaotao.net/
--------------------------------------------------------------其他--------------------------------------------------------------
1:PPT模板
bangongziyuan.com/ppt/
2:阿里巴巴矢量图库
https://www.iconfont.cn/
3:在线转换PDF的工具
https://smallpdf.com/cn
4:二叉树红黑树算法等演示
https://www.cs.usfca.edu/~galles/visualization/source.html
5:视频学习资料
https://space.bilibili.com/95256449/video
6:springIoc
https://www.zhihu.com/question/23277575/answer/169698662
7:面试突击文档
https://snailclimb.gitee.io/javaguide-interview/#/
8:Mysql优化
https://juejin.im/post/5edeedae518825432e25d2e0
9:mysql底层
https://juejin.im/post/5ef73e5b5188252e9631184e
10:hashMap面试点
https://juejin.im/post/5ef15f8ff265da02f5544215

document's People

Contributors

luoyong1993 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.