会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Loading
Rzk
博客园
首页
新随笔
管理
上一页
1
···
18
19
20
21
22
23
24
25
26
···
37
下一页
2020年7月8日
Oracle基本使用
摘要: 创建数据库表 创建 scott 数据库中的 dept 表 create table dept( -- 部门编号 deptno int unsigned auto_increment primary key, -- 部门名称 dname varchar(15) , -- 部门所在位置 loc varc
阅读全文
posted @ 2020-07-08 11:17 Rzk
阅读(120)
评论(0)
推荐(0)
2020年7月7日
Linux里面的MySQL忘记密码RROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
摘要: 1.在my.conf 我的conf在etc下 skip-grant-tables 编写完:wq保存退出 2.进入mysql mysql -u root -p 执行以下命令 update mysql.user set authentication_string=password('123qwe') w
阅读全文
posted @ 2020-07-07 10:29 Rzk
阅读(125)
评论(0)
推荐(0)
2020年7月6日
SpringBoot2.x以上配置schema.sql脚本
摘要: spring: datasource: username: root password: 123456 url: jdbc:mysql://xxx:3306/test driver-class-name: com.mysql.cj.jdbc.Driver ** schema:** ** - clas
阅读全文
posted @ 2020-07-06 16:43 Rzk
阅读(434)
评论(0)
推荐(0)
2020年6月9日
数据库插入字段[Err] 1366 - Incorrect string value: '\xE5\xBC\xA0\xE4\xB8\x89...' for column 'ename' at row 1
摘要: 使用mysql插入insert into tb_emp values(1001,'张三1','码农',20000,'2020-01-01',10); 就出现了这段话[Err] 1366 - Incorrect string value: '\xE5\xBC\xA0\xE4\xB8\x89...' f
阅读全文
posted @ 2020-06-09 20:27 Rzk
阅读(1013)
评论(0)
推荐(1)
2020年6月8日
找不到命令
摘要: wget找不到命令 运行 yum -y install wget 即可 yum 安装 Error: No matching Packages to list 阿里云yum源: wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyu
阅读全文
posted @ 2020-06-08 21:27 Rzk
阅读(170)
评论(0)
推荐(0)
2020年5月29日
Shiro入门使用
摘要: Shiro Git链接 Shiro官方文档 BilBil学习链接 新建一个Maven的项目 导入依赖 <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-core</artifactId> <version>1.4.1
阅读全文
posted @ 2020-05-29 00:26 Rzk
阅读(121)
评论(0)
推荐(0)
2020年5月26日
springboot 使用jdbc + Druid整合
摘要: ##新建一个springboot项目 打开New Project > 选择Spring initializr 然后next ###需要导入webmvc导入依赖 <!--web依赖--> <dependency> <groupId>org.springframework.boot</groupId>
阅读全文
posted @ 2020-05-26 14:46 Rzk
阅读(347)
评论(0)
推荐(0)
2020年5月22日
@Controller和@RestController的区别
摘要: 今天使用springboot试了一下跳转视图,死活显示不了页面的数据给我返回视图名字,查了一下结果是加上@RestController @RestController 如果使用@RestController:所有方法都会返回数据,不会跳转页面 网上查找的原因: 如果只是使用@RestControll
阅读全文
posted @ 2020-05-22 14:04 Rzk
阅读(323)
评论(0)
推荐(0)
2020年5月21日
Linux安装jdk
摘要: ##下载jdk8 我这里是jdk最新版的 百度网盘https://pan.baidu.com/s/1aSj-XmRp83OKKLLUDqi7Aw 提取码:tofk ###在Windows下载使用xftp进行拖拽到Linux根目录下的opt里面 ##安装tar tar -zxvf jdk-8u241-
阅读全文
posted @ 2020-05-21 17:16 Rzk
阅读(164)
评论(0)
推荐(0)
Linux服务进程管理
摘要: 进程管理基本介绍 1) 在LINUX中,每个执行的程序(代码)都称为一个进程。每一个进程都分配一个ID号。 2) 每一个进程,都会对应一个父进程,而这个父进程可以复制多个子进程。例如www服务器 3) 每个进程都可能以两种方式存在的。前台 与后台,所谓前台进程就是用户目前的屏幕上可以进行操作的。后台
阅读全文
posted @ 2020-05-21 02:22 Rzk
阅读(202)
评论(0)
推荐(0)
上一页
1
···
18
19
20
21
22
23
24
25
26
···
37
下一页
公告