test

博客园 首页 新随笔 联系 订阅 管理
上一页 1 ··· 5 6 7 8 9 10 11 下一页

2019年9月29日 #

摘要: 权限不够 在 Linux 中执行 .sh 脚本,异常 /bin/sh^M: bad interpreter: No such file or directory。这是不同系统编码格式引起的:在 Windows 系统中编辑的 .sh 文件可能有不可见字符,在 Linux 系统下执行会报以上异常信息。 阅读全文
posted @ 2019-09-29 10:09 testgogogo 阅读(1567) 评论(0) 推荐(0) 编辑

2019年9月28日 #

摘要: A newer version of the Android SDK is required. To update, run: /Users/xxx/Library/Android/sdk/tools/bin/sdkmanager --update 阅读全文
posted @ 2019-09-28 17:43 testgogogo 阅读(1681) 评论(0) 推荐(0) 编辑

2019年9月25日 #

摘要: 主要用到的关键字: PARTITION(创建分区表必备) INTERVAL (自动创建分区表必备 好像只有oracle10g 和oracle11g 中有该关键字) 例子如下: create table T1( ID VARCHAR2(50) not null, NAME VARCHAR2(50), 阅读全文
posted @ 2019-09-25 10:58 testgogogo 阅读(329) 评论(0) 推荐(0) 编辑

2019年8月8日 #

摘要: class QuestionCheck extends Component { constructor(props) { super(props); this.state = { checked: props.checked }; } changeSel = () => { this.props.setCheckd(this.props, !this.state.checked); this.se 阅读全文
posted @ 2019-08-08 09:57 testgogogo 阅读(311) 评论(0) 推荐(0) 编辑

2019年8月1日 #

摘要: git clone "你的仓库地址" 利用命令行提交代码步骤提交代码之前,需先从服务器上面拉取代码,以防覆盖别人代码。1:拉取服务器代码git pull2:查看当前工作目录树的工作修改状态git status状态:1:Untracked: 未跟踪, 此文件在文件夹中, 但并没有加入到git库, 不参 阅读全文
posted @ 2019-08-01 21:13 testgogogo 阅读(173) 评论(0) 推荐(0) 编辑

2019年7月29日 #

摘要: 4.0.0 com.xxx.xxx xxx-api 1.0.1 pom 阅读全文
posted @ 2019-07-29 10:44 testgogogo 阅读(1075) 评论(0) 推荐(0) 编辑

2019年7月19日 #

摘要: mvn install:install-file "-Dfile=-xx-1.0.0.jar" "-DgroupId=com.xx.xx" "-DartifactId=xx-xx" "-Dversion=1.0.0" "-Dpackaging=jar" "-DgeneratePom=true" 阅读全文
posted @ 2019-07-19 15:55 testgogogo 阅读(512) 评论(0) 推荐(0) 编辑

2019年7月11日 #

摘要: 注释掉:@RunWith(SpringRunner.class) 切记是测试类的 阅读全文
posted @ 2019-07-11 19:33 testgogogo 阅读(2910) 评论(0) 推荐(0) 编辑

2019年6月28日 #

摘要: 判断字符串是否为空 阅读全文
posted @ 2019-06-28 16:19 testgogogo 阅读(1573) 评论(0) 推荐(0) 编辑

摘要: 之前集成mysql的时候也出现过这个问题。 因为版本问题,集成MySQL一直出现驱动无法加载。最后还是把版本调整了下 【Springboot(2.1.5.RELEASE)+mysql(8.0.13)+pagehelper(1.2.10)】 oracle现在也出现这个问题 【Springboot(2. 阅读全文
posted @ 2019-06-28 15:45 testgogogo 阅读(1199) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 下一页