- 博客(9)
- 资源 (18)
- 收藏
- 关注
原创 sqlserver mysql 无法绑定由多个部分组成的标识符
42000] [Microsoft][SQL Server Native Client 11.0][SQL Server]无法绑定由多个部分组成的标识符 “b.ACTOR_ID”。无法绑定由多个部分组成的标识符 “b.ACTOR_ID”。无法绑定由多个部分组成的标识符。
2022-10-12 16:11:54
4097
原创 获取LocalDateTime类型参数的月份和年份
private LocalDateTime date;//获取LocalDateTime的年份date.getYear();//这样可以获得LocalDateTime类型参数的月份Month month=date.getMonth();//如果不想使用Month类型的月份,想使用int类型,使用下面方法即可int monthNum=month.getValue();...
2022-05-27 16:34:41
3182
原创 SpringSecurity学习笔记
Spring Security项目搭建使用流程1. 搭建项目创建好springboot框架在pom文件导入springsecurity框架的依赖包<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId></dependency>编写
2021-10-12 01:23:38
522
原创 Mybatis-plus 学习笔记
Mybatis-plus依赖版本号3.0.5补充本技术基于SpringBoot技术完成使用不要和mybatis同时使用,可能会造成资源不匹配本笔记针对3.0.5版本,最新的版本的用法可能不一样,谨慎选择搭建使用项目过程1. 导入依赖包在pom文件导入mybatis-plus依赖包<dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-
2021-10-12 01:17:56
587
原创 Docker学习笔记
Docker介绍: 镜像:Docker 镜像是用于创建 Docker 容器的模板,比如 Ubuntu 系统。 容器:容器是独立运行的一个或一组应用,是镜像运行时的实体。1、安装流程进入docker的帮助文档页面,下载linux版本的docker https://docs.docker.com/get-docker/卸载旧的版本yum remove docker \ docker-client \ docke
2021-10-12 01:13:38
73
原创 Consider the following: If you want an embedded database (H2, HSQL or Derby)
Consider the following:If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active).出现该问题是因为pom文件
2021-08-23 19:48:03
2685
原创 java.sql.SQLException: Parameter index out of range (2 > number of parameters, which is 1).错误
java.sql.SQLException: Parameter index out of range (2 > number of parameters, which is 1).当出现这个错误 请看一下你的 mybatis 的sql语句我是针对模糊查询 解决问题百分之百是 引号问题 是双引号 不是单引号 select from dict_propert...
2021-07-13 16:09:56
5849
原创 Cannot resolve symbol ‘Valid‘ Cannot resolve symbol ‘NotNull‘ 报错解决
新建的项目使用@Valid和@NotNull注解出现以下情况Cannot resolve symbol ‘Valid’, Cannot resolve symbol ‘NotNull’ SpringBoot的版本超过2.3版本,Spring Boot的starter包不再默认包含spring-boot-starter-validation库了错误有两种解决办法:1、要继续在当前版本使用@ Valid,@ NotEmpty等注解的话需要手动导入Maven依赖<dependency>
2021-07-13 16:06:31
1720
Java面试题包涵基础,微服务分布式,数据库,jvm,网络,设计模式,算法,分布式锁和分布式事物等等
2022-06-07
Linux网站网页搭建
2022-06-07
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人