sunny123456

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::
上一页 1 ··· 78 79 80 81 82 83 84 85 86 ··· 187 下一页

2022年10月21日

摘要: Git极简教程(3)--branch级别的操作 origin也有一个默认叫master的branch。默认主分支 origin/master git pull 这个命令是更新origin(比如朋友提交了新的改动,需要同步),然后把master与origin/master合并,把合并后的叫做新的mas 阅读全文
posted @ 2022-10-21 12:49 sunny123456 阅读(1154) 评论(0) 推荐(0)

摘要: Git极简教程(2)--remote级别的操作,remote(多个分支的集合体)我们叫做origin,origin/master一般是主分支。origin/dev 开发分支,origin/zhangsan 开发者张三的分支 都应该复制master,基于master进行开发迭代 刚才说到,remote 阅读全文
posted @ 2022-10-21 12:23 sunny123456 阅读(330) 评论(0) 推荐(0)

摘要: Git极简教程(1)--总纲 ,commit(一次提交 ),一串不分叉的 commit 叫做一个 branch (图上的一根线,一条分支),一些 branch 聚在一起叫做一个 remote (图上的一个框 多个分支) 最近大家都需要在家办公/学习,在线协作成为一个必备的技能。作为程序员的协作工具, 阅读全文
posted @ 2022-10-21 12:02 sunny123456 阅读(102) 评论(0) 推荐(0)

2022年10月20日

摘要: Spring AOP与自定义注解Annotation的使用 AOP,Spring框架的两大核心之一,又称面向切面编程,通过代理模式,对原有的类进行增强。在Spring框架中,AOP有两种动态代理方式,其一是基于JDK的动态代理,需要代理的类实现某一个接口;其二是基于CGLIB的方式,该方式不需要类实 阅读全文
posted @ 2022-10-20 18:24 sunny123456 阅读(3930) 评论(0) 推荐(0)

摘要: 一道笔试题:给定编码规则,实现decode()方法 public class CodeDecode { /*变换函数encode()顺序考察已知字符串的字符,按以下规则逐组生成新字符串: (1)若已知字符串的当前字符不是大于0的数字字符,则复制该字符与新字符串中; (2)若以已知字符串的当前字符是一 阅读全文
posted @ 2022-10-20 18:11 sunny123456 阅读(43) 评论(0) 推荐(0)

摘要: java的decode_Java decode机试题 /** * * java编写encode方法和decode方法,机试题 请你用java,c,c++ * 中任何一种语言实现两个函数encode()和decode(),分别实现对字符串的变换和复原。 * 变换函数encode()顺序考察以知字符串的 阅读全文
posted @ 2022-10-20 18:09 sunny123456 阅读(147) 评论(0) 推荐(0)

2022年10月19日

摘要: springAOP中annotation的具体使用 注解类 对象 spring aop @annotation的用法_gitcat的博客-CSDN博客_@annotation spring@annotation用在定义连接点时,对连接点进行限制。比如我们想对标注了@Deprecated的方法进行拦截 阅读全文
posted @ 2022-10-19 22:08 sunny123456 阅读(136) 评论(0) 推荐(0)

摘要: Eclipse Maven Install打包报错:Perhaps you are running on a JRE rather than a JDK? 解决方法 Maven Install打包报错:Perhaps you are running on a JRE rather than a JD 阅读全文
posted @ 2022-10-19 21:49 sunny123456 阅读(445) 评论(0) 推荐(0)

摘要: Intellij idea Perhaps you are running on a JRE rather than a JDK 使用intellij idea项目maven编译时发现报错误: No compiler is provided in this environment. Perhaps 阅读全文
posted @ 2022-10-19 21:48 sunny123456 阅读(104) 评论(0) 推荐(0)

摘要: idea运行maven install报错:Perhaps you are running on a JRE rather than a JDK? 今天再idea终端里面输入“mvn install -Dmaven.test.skip=true”命令,报错: [ERROR] No compiler 阅读全文
posted @ 2022-10-19 21:45 sunny123456 阅读(936) 评论(0) 推荐(0)

上一页 1 ··· 78 79 80 81 82 83 84 85 86 ··· 187 下一页