码迷,mamicode.com
首页 >  
搜索关键字:comare version number    ( 48018个结果
mysql改为postgresql 语法常见问题
springboot引入postgresql ①pom引入依赖<dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>9.4.1212</version></depende ...
分类:数据库   时间:2021-01-29 12:21:36    阅读次数:0
org/apache/jasper/compiler/JDTCompiler$1] with root cause
1、问题原因是tomcat和jdk版本冲突 2、解决方案: 不断调整<artifactId>tomcat-embed-jasper</artifactId>的版本 我调整为<tomcat-jsp-version>9.0.13</tomcat-jsp-version> 就可以运行了 ...
分类:Web程序   时间:2021-01-29 12:17:13    阅读次数:0
git和github的基本用法
1、git的安装:(我是windows) 查看git版本号(未安装则不会出现版本号,去官网下载对应版本的git即可) git --version 在桌面空白处右键,会出现git gui here和git bash here 2、github上头像不显示的问题及解决: 修改hosts文件:C:\Win ...
分类:其他好文   时间:2021-01-29 12:09:52    阅读次数:0
vue组件传值的五种方式
方法一 props传参 父组件 1. <template> 2. <div class="wrap"> 3. <div>我是Father组件</div> 4. <Son 5. str="我是字符串" 6. :num=5 7. :obj="{cont:'我是一个对象'}" 8. :func="()=> ...
分类:其他好文   时间:2021-01-29 12:04:52    阅读次数:0
1027 Colors in Mars (20分)
People in Mars represent the colors in their computers in a similar way as the Earth people. That is, a color is represented by a 6-digit number, wher ...
分类:其他好文   时间:2021-01-28 12:14:24    阅读次数:0
springboot整合ElasticSearch
yml spring: data: elasticsearch: client: reactive: endpoints: 192.168.209.160:9200 connection-timeout: 10000#链接到es的超时时间,毫秒为单位,默认10秒(10000毫秒) socket-ti ...
分类:编程语言   时间:2021-01-28 12:03:55    阅读次数:0
node版本管理工具n包使用教程详解
1. 安装n管理包 终端使用npm install -g n命令全局安装, 安装成功后在终端输入n --version或n查看。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 ~ npm install -g n /usr/local/bin/n - ...
分类:其他好文   时间:2021-01-27 14:02:06    阅读次数:0
Java多线程
Java多线程 多线程的实现1 继承Thread 重写run() start() 1.为什么要重写run()方法? 因为run()方法是用来封装线程要执行的代码的。 2.run()方法和start()方法的区别? 直接使用run()方法并不是启动多线程,使用start()才是启动线程,然后由JVM调 ...
分类:编程语言   时间:2021-01-27 13:58:25    阅读次数:0
【补题】Codeforces Educational Codeforces Round 103 D
Cleaning the Phone Polycarp often uses his smartphone. He has already installed n applications on it. Application with number i takes up ai units of m ...
分类:其他好文   时间:2021-01-27 13:50:46    阅读次数:0
等价多米诺骨牌对的数量
此博客链接:https://www.cnblogs.com/ping2yingshi/p/14331519.html 等价多米诺骨牌对的数量 题目链接:https://leetcode-cn.com/problems/number-of-equivalent-domino-pairs/ 题目 给你一 ...
分类:其他好文   时间:2021-01-27 13:43:12    阅读次数:0
48018条   上一页 1 ... 63 64 65 66 67 ... 4802 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!