丙午🐎年

acc8226 的博客

springboot 的内置 tomcat 时,就不需要引入 javaee-api 了,spring-boot 已经包含了。使用 springboot 的 websocket 功能首先引入 springboot 组件。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
plugins {
java
id("org.springframework.boot") version "2.7.9"
id("io.spring.dependency-management") version "1.0.15.RELEASE"
}

group = "com.example"
version = "0.0.1-SNAPSHOT"
java.sourceCompatibility = JavaVersion.VERSION_17

repositories {
mavenCentral()
}

dependencies {
implementation("org.springframework.boot:spring-boot-starter-websocket")
testImplementation("org.springframework.boot:spring-boot-starter-test")
}

tasks.withType<Test> {
useJUnitPlatform()
}
阅读全文 »

全平台

  1. 【全平台】每日英语听力 可用于练习听力
  2. 【全平台】欧路词典

Bob(Mac)

Bob 是一款 Mac 端翻译软件,支持划词翻译、截图翻译以及手动输入翻译

目前支持

  • 划词翻译
  • 截图翻译
  • 输入翻译
  • 翻译多开
  • 自定义插件
  • 自动识别语种
  • 驼峰拆分、蛇形拆分
  • AppleScript 调用
  • PopClip 调用
阅读全文 »

windows 系统

一般我需要有鼠标悬停切换标签功能 和 能使用丰富的 chrome 插件。

目前较为推荐

常用设置

  1. 推荐开启:标签设置页-开启鼠标悬停
  2. 安装注意事项:一般建议关闭自带的鼠标手势,避免和全局鼠标手势软件冲突。

常用快捷键

  • ctrl + 回车 智能补全并打开网址
  • ctrl + J 呼出下载管理 配合 esc 关闭下载管理窗口
  • ctrl + D 快速添加网络书签
  • ctrl + T 新建标签
    阅读全文 »

微软 Sysinternals 【win】

Sysinternals - Sysinternals | Microsoft Learn

Sysinternals 网站于 1996 年创建, Mark Russinovich 用于托管他的高级系统实用程序和技术信息。 无论你是 IT 专业人员还是开发人员,你都会找到 Sysinternals 实用工具,帮助你管理、排查和诊断 Windows 和 Linux 系统和应用程序。

阅读全文 »
0%