- 博客(24)
- 资源 (3)
- 收藏
- 关注
原创 面向对象程序设计方法
万物皆对象。你可以将对象想象成一种特殊的变量。它存储数据,但可以在你对其“发出请求”时执行本身的操作。理论上讲,你总是可以从要解决的问题身上抽象出概念性的组件,然后在程序中将其表示为一个对象。程序是一组对象,通过消息传递来告知彼此该做什么。要请求调用一个对象的方法,你需要向该对象发送消息。每个对象都有自己的存储空间,可容纳其他对象。或者说,通过封装现有对象,可制作出新型对象。所以,尽管对象的概念非常简单,但在程序中却可达到任意高的复杂程度。每个对象都有一种类型。根据语法,每个对象都是某个“类”的一个.
2021-07-22 07:21:23
578
原创 vue表格中按钮实现带参数和后端进行数据交互
想实现超链接带参数请求后端进行业务处理?传统jsp代码:使用超链接请求后端<a href="delete?no=${stu.stuNo}">删除</a>Vue式:把参数传递到函数中,在函数中通过ajax或者axios请求后端表现层:<tr v-for="stu in studentList"> <td>{{stu.id}}</td> <button @click="deleteStu(stu.id)">删除</bu
2020-12-23 15:28:16
1742
原创 element-ui使用from表单验证数据问题
from表单:<div id="myDiv"> <el-form ref="form" :model="student" label-width="80px"> <el-form-item label="学生编号"> <el-select v-model="student.id" placeholder="请选择"> <el-option
2020-12-21 20:51:07
650
原创 解决:JavaWeb前后端数据交互日期变成时间戳的问题
如图:前端接收JSON格式的时间数据变成了时间戳PrintWriter writer = response.getWriter();//返回json格式数据ObjectMapper objectMapper = new ObjectMapper();writer.print(objectMapper.writeValueAsString(studentList));解决方法:PrintWriter writer = response.getWriter();//返回json格式数据Obj
2020-12-21 20:38:16
2517
转载 【狂神说】Spring笔记及代码
笔记代码对应视频教程,B站搜索关注:狂神说Java视频教程:【狂神说Java】Spring5最新完整教程IDEA版通俗易懂笔记下载地址:Spring全面详解笔记代码下载地址:Spring代码B站地址:https://space.bilibili.com/95256449...
2020-12-20 18:28:28
987
原创 C#餐饮管理系统源码及数据库设计
资源链接:C#餐饮管理系统源码及数据库设计.zip登录页面:登录的用户名和密码及权限:主界面:开台界面:点餐界面:结账界面:
2020-12-20 18:12:43
2105
7
原创 解决:Maven新建的WebApp模板项目无法部署到Tomcat上?
用Maven的WebApp模板新建一个SpringMVC-03-test项目,但是Tomcat添加发布项目中没有SpringMVC-03-test解决方法:选中SpringMVC-03-test项目,右键点击Add Framework Support勾选上Web Application再次添加发布项目就会有SpringMVC-03-test...
2020-12-20 16:31:33
2487
原创 解决:JavaWeb项目没有new Servlet选项
如图:解决方法:第一种方法:项目上右键选择Add Framework Support勾选上Web Application再新建文件的时候就会多出new Servlet等选项第二种方法:新建项目的时候把Web Application勾选上即可
2020-12-20 15:39:32
2274
1
原创 解决:org.springframework.beans.factory.BeanNotOfRequiredTypeException:
报错信息:org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'xxx' is expected to be of type 'xxx.xxx.xxx.xxxImpl' but was actually of type 'com.sun.proxy.$Proxy9' at org.springframework.beans.factory.support.AbstractBeanFactory.doGe
2020-12-18 14:24:11
2070
原创 解决:org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions
Mybatis结合Spring报错:org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 6 at org.mybatis.spring.MyBatisExceptionTransla
2020-12-18 14:08:38
9770
原创 VMware安装虚拟机提示您的主机不满足在启用 Hyper-V 或 Device/Credential Guard 的情况下运行 VMware Workstation 的最低要求
1.关闭Hyper-V2.快捷键win+r 输入regedit地址栏:计算机\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard新建四项都为DWORD(32位):ConfigureSystemGuardLaunch 值为 2EnableVirtualizationBasedSecurity 值为 0RequireMicrosoftSignedBootChain 值为 1Requir
2020-12-17 19:07:00
16464
9
原创 async await promise结合案例之延时显示数据
<script> //要延时加载的数据 const bb = [{age:10},{age:11},{age:12}]; //定义一个async函数返回一个Promise async function cc(){ return new Promise((resolve,reject)=>{ //使用定时器进行延时发送通知 setTimeout(()=>{ resolve(); },1500) }) } //定义 async functi
2020-12-16 11:12:22
2382
原创 解决org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: java.io
原因是资源过滤问题,编写的xml文件没有被打包在pom.xml中加入以下资源过滤<build><resources> <resource> <directory>src/main/java</directory> <filtering>false</filtering> <includes> <include>**
2020-12-16 08:11:13
10966
1
原创 解决:org.springframework.beans.factory.BeanCreationException: Error creating bean with name
添加依赖 <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.9.2</version> </dependency>
2020-12-15 12:08:23
14118
2
原创 maven静态资源过滤问题
<build> <resources> <resource> <directory>src/main/java</directory><!--所在的目录--> <includes><!--包括目录下的.properties , .xml文件都会扫描到--> <includ
2020-12-14 20:16:55
796
原创 JSP文件做验证码图片并使用
新建jsp文件<%@ page import="java.awt.*" %><%@ page import="java.util.Random" %><%@ page import="java.awt.image.BufferedImage" %><%@ page import="javax.imageio.ImageIO" %><%@ page contentType="image/jpeg;charset=UTF-8" language="
2020-12-14 20:04:53
170
原创 JDBC系列流程代码
工具类、增删改查数据库工具类查询增加删除修改数据库工具类public class DBUtil { //在mysql8.0版本以上需要在后面加上服务器时区 public static final String URL = "jdbc:mysql://localhost:3306/数据库名?serverTimezone=UTC"; public static final String USER_NAME = "用户名"; public static final String
2020-12-14 19:51:57
172
原创 报错File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent!
在pom.xml文件中加入以下配置 <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties>
2020-12-14 18:35:25
17206
1
原创 解决maven项目找不到org.springframework中jar包的报错
maven项目找不到org.springframework的jar包的问题明明能够引用包但就是运行给你报包不存在首先点击file打开setting(这句话意思就是将IDE构建/运行操作委托给Maven)可以看到默认是没选上的,只需要选上再Apply就行了。再次运行可以看到项目是正常运行的了。...
2020-11-27 10:57:37
20199
6
原创 Maven项目 java:程序包xxx不存在 java:找不到符号
基于Maven创建的项目报错报错信息(让人头大)明明jar包存在还出问题解决方法(一步到胃)再运行项目就可以发现完美运行报错信息(让人头大)明明jar包存在还出问题解决方法(一步到胃)再运行项目就可以发现完美运行...
2020-11-27 10:40:17
1697
2
原创 Intellij idea的web项目找不到类
Intellij idea的普通web项目找不到类java.lang.ClassNotFoundException普通web项目找不到类普通web项目找不到类org.apache.jasper.JasperException: java.lang.ClassNotFoundException: org.apache.jsp.show_005fstudent_jsp java.lang.ClassNotFoundException: org.apache.jsp.show_005fstudent_js
2020-11-27 10:10:31
1172
1
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人