上一页 1 2 3 4 5 6 ··· 14 下一页
  2022年4月4日
摘要: Akka TCP编辑,启动报错如下: Exception in thread "main" java.lang.ClassNotFoundException: akka.remote.RemoteActorRefProvider 添加依赖如下: compile "com.typesafe.akka: 阅读全文
posted @ 2022-04-04 17:20 啊哈咧 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 1、编辑 IDEA 安装目录文件 bin/idea64.exe.vmoptions ,添加 -Dfile.encoding=UTF-8 2、修改 IDEA 文件编码 阅读全文
posted @ 2022-04-04 11:00 啊哈咧 阅读(31) 评论(0) 推荐(0) 编辑
  2022年4月3日
摘要: 错误提示如下: Connected to the target VM, address: '127.0.0.1:51983', transport: 'socket' Exception in thread "main" java.lang.NoClassDefFoundError: scala/P 阅读全文
posted @ 2022-04-03 17:35 啊哈咧 阅读(298) 评论(0) 推荐(0) 编辑
摘要: 1、下载安装配置GRADLE环境 2、编辑gradle.build文件 apply plugin: 'scala' apply plugin: 'idea' group 'com.m24.learn' version '1.0-SNAPSHOT' sourceCompatibility = 1.8 阅读全文
posted @ 2022-04-03 16:14 啊哈咧 阅读(80) 评论(0) 推荐(0) 编辑
  2021年11月25日
摘要: 基础内容 Scala开发环境配置 MAVEN+SCALA+IDEA GRADLE+SCALA+IDEA 执行SCALA脚本 Scala 泛型 this.type 问题记录 Akka启动时,报错:java.lang.NoClassDefFoundError: scala/Product$class I 阅读全文
posted @ 2021-11-25 17:28 啊哈咧 阅读(17) 评论(0) 推荐(0) 编辑
  2021年11月13日
摘要: 使用 MyBatisPlus 分布查询时,在特定页面时候返回数值一样,MyBatisPlus调用如下: List<SomeObject> selectWatchListModel(Page<SomeObject> page, @Param("query")SomeObjectQuery query) 阅读全文
posted @ 2021-11-13 12:18 啊哈咧 阅读(124) 评论(0) 推荐(0) 编辑
  2021年10月29日
摘要: 使用MyBatis写查询语句时,遇到一个问题,SELECT的字段一直返回时,KEY一直是大写,处理方法如下 : SELECT A as "name" ...... 这里需要给字段A起别名,而且必须用as的形式,且别名需要以引号括起来 阅读全文
posted @ 2021-10-29 13:34 啊哈咧 阅读(233) 评论(0) 推荐(0) 编辑
  2021年10月28日
摘要: 1、Ubuntu 需要安装SSH服务器 sudo apt-get install openssh-server 2、启用root用户 sudo passwd -u root #解锁密码 sudo passwd root #设置密码 3、开启ssh下root登录 修改配置文件sshd_config中, 阅读全文
posted @ 2021-10-28 11:09 啊哈咧 阅读(298) 评论(0) 推荐(0) 编辑
摘要: 问题描述:在虚拟机Ubuntu里启动oracle镜像,通过navicat连接oracle,连接报错如下 TNS:listener: all appropriate instances are blocking new connections 其他网上解决方法主要通过重启oracle修复,但该方法在这 阅读全文
posted @ 2021-10-28 11:02 啊哈咧 阅读(354) 评论(0) 推荐(0) 编辑
  2021年10月17日
摘要: 存储过程 CREATE OR REPLACE procedure "m_proc"(p_message out NVARCHAR2) AS ... BEGIN ... END; Mybatis <select id="refresh" statementType="CALLABLE" paramet 阅读全文
posted @ 2021-10-17 16:16 啊哈咧 阅读(229) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 14 下一页