上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页
摘要: 1、什么是Spring MVC ?简单介绍下你对springMVC的理解? Spring MVC是一个基于MVC架构的web应用开发框架,它是Spring的一个模块,无需中间整合层来整合 ,属于表现层的框架。 在web模型中,MVC是一种很流行的把Model,View,Controller分离框架, 阅读全文
posted @ 2022-05-31 23:21 Code7Rain 阅读(167) 评论(0) 推荐(0) 编辑
摘要: Java多线程实现的4种方式: 继承Thread类,重写run方法 实现Runnable接口,重写run方法,实现Runnable接口的实现类的实例对象作为Thread构造函数的target 通过Callable和FutureTask创建线程 通过线程池创建线程 前面两种可以归结为一类:无返回值,原 阅读全文
posted @ 2022-05-31 23:18 Code7Rain 阅读(3117) 评论(0) 推荐(0) 编辑
摘要: 1、问题 2、场景 连接远程测试数据库 3、原因 试了很多方案,未果。 4、解决方案 继续连了很多次,偶然意外连上了。 阅读全文
posted @ 2022-05-31 23:13 Code7Rain 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 1、启动 net start mysql 2、连接指定主机指定端口 输入 mysql -h 主机地址 -P 端口号 -u 用户名 -p ,回车然后输入密码 mysql -h 139.xx.xx.xx -P xxx -u xxx -p 参数说明: host 可选。规定主机名或 IP 地址。 usern 阅读全文
posted @ 2022-05-31 23:08 Code7Rain 阅读(121) 评论(0) 推荐(0) 编辑
摘要: #idea2021_3安装及破解 ##下载安装包 历史版本下载链接 如下选择2021.3版本下载即可。 ##安装 中间步骤省略,下一步或者install选择默认即可。 ##破解 具体破解安装包见文末参考链接。 复制补丁文件夹到硬盘某个位置且后期位置不在移动。打开文件夹后,目录下的ja-netfilt 阅读全文
posted @ 2022-05-09 16:57 Code7Rain 阅读(6821) 评论(3) 推荐(1) 编辑
摘要: ##初认识 认证+授权 默认用户:user 默认密码:Using generated security password: xxxxxx (项目终端产生) ##原理 通过查看源码 FilterSecurityInterceptor:是一个方法级的权限过滤器,基本位于过滤链的最底部 Exception 阅读全文
posted @ 2022-04-19 19:16 Code7Rain 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 问题 Error:(11, 30) java: 无法访问org.springframework.context.ConfigurableApplicationContext 找不到org.springframework.context.ConfigurableApplicationContext的类 阅读全文
posted @ 2022-04-18 22:11 Code7Rain 阅读(973) 评论(0) 推荐(0) 编辑
摘要: 问题 Consider defining a bean of type ‘*Mapper‘ in your configuration. 原因 在使用新的mybatis时,使用注解@Mapper修饰相应的mapper接口,但是在controller里不能使用@Autowired自动注入,报错 Con 阅读全文
posted @ 2022-04-18 22:09 Code7Rain 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 问题 错误: 找不到或无法加载主类 com.house.xxx.xxxApplication 解决方案 第一种解决方案:检查项目module sdk 第二种解决方案 :检查项目jdk版本和maven版本是否对应 第三种解决方案 :将maven中清空重新编译,在idea编译器中执行 关闭当前项目,然后 阅读全文
posted @ 2022-04-18 22:02 Code7Rain 阅读(314) 评论(0) 推荐(0) 编辑
摘要: #IDEA中操作数据库插入数据报错异常(博客项目插入评论) ##bug1 问题 Caused by: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Out of range value for column 'a 阅读全文
posted @ 2022-04-17 11:51 Code7Rain 阅读(82) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页