
操作
onpwerb
这个作者很懒,什么都没留下…
展开
-
[Git]本地代码上传到github
1.进入本地项目根目录,创建git仓库git init2.查看仓库的状态git status3.向缓冲区中添加文件git add . 4.保存仓库的历史记录git commit -m "First commit"5.查看提交后的状态git status6.查看提交日志git log7.在github上创建仓库8.添加至远程仓库git remote add orgin http:xx.git9.推送至原创 2017-02-21 21:31:02 · 347 阅读 · 0 评论 -
spring AOP中的<aop:config>配置
aop:config配置一个application可以包含多个“aop:config”,一个”aop:config”要按顺序配置pointcut, advisor 和aspect。切面aspect, 用aop:aspect声明,比如:<aop:config> <aop:aspect id = "aspect" ref = "myBean"> .... </aop:aspect><原创 2016-09-01 20:07:25 · 2786 阅读 · 0 评论 -
eclipse中查看JDK源代码
1.在eclipse中已经有一个叫做Code的工程。在菜单栏点击【Window】-> 【Preferences】在【Java】-> 【Installed JREs】,选择当前eclipse使用的jdk,点击旁边的【Edit】2.在edit JRE的弹窗里,选择rt.jar, 点击rt.jar文件下的Source attachment, 点击右边的【Source Att原创 2016-08-22 22:40:27 · 371 阅读 · 0 评论 -
将搜索引擎从google.com/hk修改为google.com
1 登录谷歌账号2 默认搜索语言为英文3 默认搜索引擎为: https://www.google.com/search?hl=en-US&source=hp&q=%s&aq=f&aqi=&aql=&oq=&gs_rfai=4 使用一次 https://www.google.com/ncr 搜索原创 2016-08-19 00:38:24 · 4427 阅读 · 0 评论