自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(19)
  • 收藏
  • 关注

原创 使用rsync同步服务器和客户端的文件夹

利用rsync实现两台电脑的文件同步

2024-03-02 19:29:36 460

原创 Eveng社区版初次使用(1) -两台VPCS互相ping通

初次使用Eveng

2023-04-14 00:12:14 926

原创 ENSP 中的Cloud端口绑定信息只有UDP

**ENSP Cloud端口绑定信息只有UDP问题点:解决方案:重新安装Wincap如果安装失败 提示这个的话删除这个应用程序,在重新安装可以了最后成功解决:

2022-03-28 12:37:02 3845

原创 Springboot整合jsp出现Could not resolve view with name Index in servlet with name dispatcherServlet

新手在学Springboot整合jsp的时候出现的一个问题问题描述:无法在名称为“ dispatcherServlet”的servlet中解析名称为“ Index”的视图问题分析:在控制层: @RequestMapping("/TestIndex") public ModelAndView Test() { System.out.println("hello"); ModelAndView mv = new ModelAndView();

2020-05-26 20:00:08 10908 2

原创 Springboot启动出现了Error creating bean with name userController

编程菜鸟在启动springboot出现了错误:D:\Windows\Jdk14\jdk-14\bin\java.exe -Dvisualvm.id=460544745239900 -XX:TieredStopAtLevel=1 -noverify -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.jmx.enabled=true -Dspring.liveBeansView.mbeanDomain -Ds

2020-05-26 18:32:04 24876 3

原创 学习日常-Springboot整合Mybatis

新手springboot整合mybatis案例开发工具:IDEA数据库:实体类:package com.example.springboot.demo01.Bean;import lombok.AllArgsConstructor;import lombok.Data;import lombok.NoArgsConstructor;import lombok.experimental.Accessors;@Data@NoArgsConstructor@AllArgsConstr

2020-05-17 23:00:51 214

原创 学习日常-Servlet集成Shiro

一个简单的Servlet集成Shiro案例开发工具:IDEApom.xml<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/P

2020-05-17 17:48:10 400

原创 学习日常-SpringMvc之拦截器

新手进行的一个简单拦截器开发开发工具: IDEA项目结构pom.xml<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/P

2020-05-17 15:41:57 219 1

原创 学习日常-Mybatis之使用注解开发

数据库第一步:使用IDEA新建实体类package Com.fvti.Myabtis.Account;import lombok.AllArgsConstructor;import lombok.Data;import lombok.NoArgsConstructor;@Data@AllArgsConstructor@NoArgsConstructorpublic class Person { private Integer id; private String us

2020-05-16 22:48:24 186

原创 学习日常-Mybatis之逆向工程

Mybatis逆向工程pom.xml<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://mave

2020-05-16 16:37:06 182

原创 Springboot集成jsp出现的500,找不到模板引擎

新手在学springboot集成jsp的时候出现的问题错误代码:问题:在templates文件下建立了Index.html,访问的时候跳转过去了,说明了最后一直跳转的是templates文件下的路径解决方案:在全局配置文件application.properties,写入这两句话spring.thymeleaf.cache=falsespring.thymeleaf.enabled=false运行结果...

2020-05-13 14:51:54 659 1

原创 Mybatis-plus整合Springboot的时候出现Unknown column 'username' in 'field list'

新手在练习Mybatis-plus整合Springboot的实现出现了Unknown column ‘username’ in ‘field list’错误代码: The error may exist in com/example/springboot/demo01/Dao/UserMapper.java (best guess)### The error may involve defaultParameterMap### The error occurred while setting par

2020-05-11 16:09:16 3284

原创 SpringBoot整合SSM的时候单元测试出现Failed to load ApplicationContext

错误问题:java.lang.IllegalStateException: Failed to load ApplicationContext at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:132) at org.springframework.test.context.s

2020-05-10 22:31:58 763

原创 SSM框架利用插件实现分页

新手SSM框架学习过程开发工具:IDEA2020JDK1.8Mysql5.7先上一个项目结构:代码如下:pom.xml:`<?xml version="1.0" encoding="UTF-8"?>4.0.0<groupId>org.example</groupId><artifactId>SSM-SpringMVc</artifactId><version>1.0-SNAPSHOT</version&

2020-05-10 00:23:52 1057 1

原创 corresponds to your MySQL server version for the right syntax to use near 'LIMIT 1' at line 1

新手学习SSM框架利用分页插件实现分页的时候出现了一个问题错误信息:Exception in thread "main" org.springframework.jdbc.BadSqlGrammarException: ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the

2020-05-09 23:27:29 3306 2

原创 SSM框架之通过id查询用户

#####这是基于上一篇登录模块之上的通过id查询用户开发工具:IDE: IDEA2020数据库:Mysql5.7JDK1.8项目结构:由于是基于之前的登录模块,我就贴有改动的部分了。UserMapperpackage cn.fvti.Study.Dao;import cn.fvti.Study.Bean.User;import org.springframewor...

2020-05-07 16:29:36 4562 4

原创 SSM框架之实现登录模块

这是自己做的一个SSM框架的登录模块。开发工具:IDEA2020,JDK1.8,navicat15运行结果:首先是数据库图片:接下来是项目结构:最后是建表语句:```sqlSET NAMES utf8mb4;SET FOREIGN_KEY_CHECKS = 0;-- ------------------------------ Table structure for ...

2020-05-02 21:10:11 1593 2

原创 mybatis读取配置文件报错:Could not find resource Mybatis-config.xml

####今天练习Mybatis的时候出现了找不到配置文件的信息目录结构:问题:代码运行结果出错,报错为:com.intellij.execution.process.ProcessNotCreatedException: Cannot run program “wmic”: CreateProcess error=2, 系统找不到指定的文件。at com.intellij.execu...

2020-04-15 23:42:00 2487 1

原创 Spring框架思维导图

时间 : 2019.12.25软件 : mind简介 : 大三三年学而不成,最后一个学期才想起来努力奋斗。这是思维导图是自己在网上查找加上自己书本上的知识点进行的一个整理,可能还没有那么完善。大家见谅一下,以后还有进行一个整理的。有什么问题提一下,我及时修改。...

2019-12-25 23:56:39 576

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除