摘要:
1.去官网上下载tomcat安装包 https://tomcat.apache.org/download-80.cgi ,在虚拟机上找个位置,把安装包放那,解压缩就可以了 2.很多教程说现在直接开启tomcat服务就可以了。至少我的报错了。报错: Neither the JAVA_HOME nor 阅读全文
摘要:
1.去官网上下载linux的jdk http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 我下载的版本:jdk-8u251-linux-x64.tar.gz 注意踩雷:下载之后查看一下属 阅读全文
摘要:
1.先看一下这段代码: select car.vin from car_info_temp car join ( select brand from car_info_temp car where car.dealer_code=#{code} group by brand ) car1 on ca 阅读全文
摘要:
select * from car_info_temp car where group by brand会报错 有个博主的解释是表test FROM test Group BY name 你select * 的时候有的列 比如 id ,它里面有多条 ,这是不合法的。 除了单条数据的,多条数据要么删了 阅读全文
摘要:
#MYSQL 8小时连接超时配置 #验证连接的有效性 spring.datasource.test-while-idle=true #获取连接时候验证,会影响性能 spring.datasource.test-on-borrow=true spring.datasource.validation-q 阅读全文
摘要:
把下面的配置加到impala连接中: spring.datasource.impala.initialSize=10spring.datasource.impala.maxActive=100spring.datasource.impala.maxWait=60000spring.datasourc 阅读全文
摘要:
在mybatis中配置;mybatis.configuration.map-underscore-to-camel-case=true 发现项目为了做多数据源,将生成 org.apache.ibatis.session.SqlSessionFactory 的配置抽出到使用@Configuration 阅读全文