相关文章
Idea 对容器中的 Java 程序断点远程调试
第一种:简单粗暴型
直接在java程序中添加log.info(),根据需要打印信息然后打包覆盖,根据日志查看相关信息
第二种:远程调试
在IDEA右上角点击编辑配置设置相关参数在Dockerfile中加入
"-jar", "-agentlib:jdwp…
建站知识
2024/12/14 3:21:29
uniapp新建的vuecli项目启动报错并且打包失败的问题(已解决)
我的项目新建流程如下 运行之后就是如下报错 解决办法:
安装如下依赖: npm i postcss-loader autoprefixer8.0.0 npm run build 编译失败 安装如下依赖: npm install postcss8.2.2 最终package.json文件如下
{"name": "ls…
建站知识
2024/12/22 21:20:50
【mongoose】mongoose 基本使用
1. 连接数据库
// 1. 安装 mongoose
// 2. 导入 mongoose
const mongoose require(mongoose)
// 3. 连接 mongodb 服务
mongoose.connect(mongodb://127.0.0.1:27017/xx_project)
// 4. 设置回调 .on 一直重复连接 .once 只连接一次
mongoose.connection.on(open, () >…
建站知识
2024/12/17 14:35:52
DAY45 70. 爬楼梯 + 322. 零钱兑换 + 279.完全平方数
70. 爬楼梯
题目要求:假设你正在爬楼梯。需要 n 阶你才能到达楼顶。
每次你可以爬 1 或 2 个台阶。你有多少种不同的方法可以爬到楼顶呢?
爬楼梯的dp版本,完全背包。
class Solution {
public:int climbStairs(int n) {vector<int>…
建站知识
2024/12/23 21:34:20
Scala语言用Selenium库写一个爬虫模版
首先,我将使用Scala编写一个使用Selenium库下载yuanfudao内容的下载器程序。 然后我们需要在项目的build.sbt文件中添加selenium的依赖项。以下是添加Selenium依赖项的代码:
libraryDependencies "org.openqa.selenium" % "selenium-ja…
建站知识
2024/12/20 18:55:51
切换win11 账户后,git报错
问题场景: 切换win11 账户后,git报错 git pull 报错: fatal: detected dubious ownership in repository at D:xxxxx D:/0xxxxxx is owned by: xxxxxxxxxxxxxxxxx but the current user is: xxxxxxxxxxxxxxxxxx To add an exception for this…
建站知识
2024/12/22 13:08:05