会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
白芷呀
学习的一些记录~
博客园
首页
新随笔
联系
管理
上一页
1
2
3
4
5
6
···
10
下一页
2020年2月7日
git内容补充-Git零基础快速入门-苏玲
摘要: https://git scm.com/book/zh/v2 git历史 集中式版本控制管理:cvs、svn 分布式版本控制管理:git 基本命令 :查看git配置 :新建仓库 工作目录 暂存区 版本历史 :把文件从工作目录放到 暂存区 (可被git管理) :提交到版本历史 :对于已经被git跟踪的
阅读全文
posted @ 2020-02-07 23:08 白芷呀
阅读(291)
评论(0)
推荐(0)
2020年1月17日
This application has no explicit mapping for /error, so you are seeing this as a fallback.
摘要: { "timestamp": 1579256897101, "status": 404, "error": "Not Found", "message": "No message available", "path": "/tmallgenie/getResponse" } Application启
阅读全文
posted @ 2020-01-17 18:39 白芷呀
阅读(189)
评论(0)
推荐(0)
Unable to load authentication plugin 'caching_sha2_password'
摘要: Caused by: com.mysql.cj.core.exceptions.WrongArgumentException: Unable to load authentication plugin 'caching_sha2_password'. at sun.reflect.NativeCon
阅读全文
posted @ 2020-01-17 15:45 白芷呀
阅读(368)
评论(0)
推荐(0)
2020年1月8日
Map merge
摘要: 将新的值赋值给map(如果不存在)或更新具有给定key的现有值。
阅读全文
posted @ 2020-01-08 16:01 白芷呀
阅读(328)
评论(0)
推荐(0)
java 8 新特性
摘要: "Java Programming Language" Lambda Expressions, a new language feature, has been introduced in this release. They enable you to treat functionality as
阅读全文
posted @ 2020-01-08 13:38 白芷呀
阅读(317)
评论(0)
推荐(0)
2020年1月6日
spring微服务实战 - 1 一个完整的HTTP JSON REST服务
摘要: 告诉Spring Boot框架,该类是Spring Boot服务的入口 告诉Spring Boot,要将该类中的代码公开为Spring RestController类 此应用程序中公开的所有URL将以/hello前缀开头 将URL中传入的firstname参数映射为传递给hello方法的变量 访问h
阅读全文
posted @ 2020-01-06 15:30 白芷呀
阅读(575)
评论(0)
推荐(0)
2020年1月3日
找不到getter/setter——没有安装lombok插件
摘要: 项目pull后的问题: import lombok.Getter; import lombok.Setter; @Setter @Getter public class ConcreteEntity extends Entity { // 具体属性 } 一个Entity类使用lombok插件,找不到
阅读全文
posted @ 2020-01-03 23:10 白芷呀
阅读(589)
评论(0)
推荐(0)
2019年9月9日
java 基础面试
摘要: JDK和JRE JRE:java运行时环境,包含了java虚拟机,java基础类库 JDK:java开发工具包,包括JRE JVM作用 解释运行字节码程序,消除平台差异性 8种基本数据类型 byte 1B short 2B char 2B int 4B long 8B float 4B double
阅读全文
posted @ 2019-09-09 16:42 白芷呀
阅读(114)
评论(0)
推荐(0)
2019年9月8日
java String StringBuilder StringBuffer
摘要: String final类,不能被继承。 不可变,一旦修改了String对象的值,等于隐性重新创建了一个新的对象,释放原对象。 StringBuilder 可修改对象,通过append()方法来修改。 可以看出,String的连接操作比StringBuffer多出了一些附加操作。 StringBuf
阅读全文
posted @ 2019-09-08 22:25 白芷呀
阅读(109)
评论(0)
推荐(0)
2019年9月7日
java 反射
摘要: 通过反射,我们可以在 运行时 获得程序或程序集中每一个类型的成员和成员的信息。一般程序中对象的类型都是在编译期就确定下来的,而 Java 反射机制可以 动态 地创建对象并调用其属性,这样的对象的类型是 编译期未知 的。 作用 创建一个类的对象 判断一个对象所属的类 判断一个类所具有的成员变量和方法
阅读全文
posted @ 2019-09-07 22:10 白芷呀
阅读(156)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
10
下一页
公告