摘要:
权限不够 在 Linux 中执行 .sh 脚本,异常 /bin/sh^M: bad interpreter: No such file or directory。这是不同系统编码格式引起的:在 Windows 系统中编辑的 .sh 文件可能有不可见字符,在 Linux 系统下执行会报以上异常信息。 阅读全文
2019年9月29日 #
2019年9月28日 #
摘要:
A newer version of the Android SDK is required. To update, run: /Users/xxx/Library/Android/sdk/tools/bin/sdkmanager --update 阅读全文
2019年9月25日 #
摘要:
主要用到的关键字: PARTITION(创建分区表必备) INTERVAL (自动创建分区表必备 好像只有oracle10g 和oracle11g 中有该关键字) 例子如下: create table T1( ID VARCHAR2(50) not null, NAME VARCHAR2(50), 阅读全文
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 阅读全文
2019年8月1日 #
摘要:
git clone "你的仓库地址" 利用命令行提交代码步骤提交代码之前,需先从服务器上面拉取代码,以防覆盖别人代码。1:拉取服务器代码git pull2:查看当前工作目录树的工作修改状态git status状态:1:Untracked: 未跟踪, 此文件在文件夹中, 但并没有加入到git库, 不参 阅读全文
2019年7月29日 #
摘要:
4.0.0 com.xxx.xxx xxx-api 1.0.1 pom 阅读全文
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" 阅读全文
2019年7月11日 #
摘要:
注释掉:@RunWith(SpringRunner.class) 切记是测试类的 阅读全文
2019年6月28日 #
摘要:
之前集成mysql的时候也出现过这个问题。 因为版本问题,集成MySQL一直出现驱动无法加载。最后还是把版本调整了下 【Springboot(2.1.5.RELEASE)+mysql(8.0.13)+pagehelper(1.2.10)】 oracle现在也出现这个问题 【Springboot(2. 阅读全文