摘要: 修改容器配置文件 1.输入docker ps -a查看需要修改的容器ID: 记录下 docker ps -a 2.停止docker(一定要先停止dokcer,不然直接修改配置文件不会生效) systemctl stop docker 3.进入docker 容器文件夹,找到对应容器的位置: docke 阅读全文
posted @ 2023-07-26 17:06 我来偷家了 阅读(954) 评论(0) 推荐(0) 编辑
摘要: 停止docker 服务 systemctl stop docker 阅读全文
posted @ 2023-07-26 16:12 我来偷家了 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 导入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-mongodb</artifactId> </dependency> 注入对象 @Resourcepr 阅读全文
posted @ 2023-05-29 11:29 我来偷家了 阅读(19) 评论(0) 推荐(0) 编辑
摘要: pom依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>or 阅读全文
posted @ 2023-05-10 14:18 我来偷家了 阅读(62) 评论(0) 推荐(0) 编辑
摘要: github下载源码 github仓库地址:https://github.com/spring-projects/spring-framework 切换分支 将分支从main切换分支到5.2.x,如果是直接下载的压缩包就不需要切换 构建出现问题 构建过程中如果出现以下错误,需要修改build.gra 阅读全文
posted @ 2023-05-09 15:29 我来偷家了 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 官网下载地址: https://services.gradle.org/distributions/ 如下图所示,我们选择想要安装的发布版本,gradle-x.x-bin.zip是需要下载的安装发布版,gradle-x.x-src.zip是源码,gradle-x.x-all.zip则是下载全部的文件 阅读全文
posted @ 2023-05-09 15:08 我来偷家了 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 查看防火墙状态 systemctl status firewalld 或者 firewall-cmd-state 暂时关闭防火墙 systemctl stop firewalld 永久关闭防火墙 systemctl disable firewalld 开启防火墙 systemctl start fi 阅读全文
posted @ 2023-05-05 23:28 我来偷家了 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 文章目录 通过limit分页查询 通过Rowbounds 通过分页插件pagehelper 通过limit分页查询mapper接口 1 List<User> getUserByLimit(Map<String,Integer> map); mapper.xml 1 <select id="getUs 阅读全文
posted @ 2022-10-12 08:39 我来偷家了 阅读(5790) 评论(0) 推荐(0) 编辑
摘要: 1、顺序传参法 public User selectUser(String name, int deptId); <select id="selectUser" resultMap="UserResultMap"> select * from user where user_name = #{0} 阅读全文
posted @ 2022-10-12 08:32 我来偷家了 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 在配置好了Tomcat依赖后,本来是可以创建Servlet的,但是第二天打开就会没有Servlet选项 解决方法 1、选中项目file-project structure-modules 2、选中src 标记为resources 3、回到项目 重新进入 file-project structure 阅读全文
posted @ 2022-10-11 22:32 我来偷家了 阅读(142) 评论(0) 推荐(0) 编辑