- 博客(21)
- 收藏
- 关注
转载 双表单校验
constp1=newPromise((resolve,reject)=>{_this.$refs['contract1'].rules=this.commitRules;_this.$refs['contract1'].validate(valid=>{if(va...
2019-09-23 16:13:00 282
转载 vue+element实现表格v-if判断
<el-table-columnprop="businessState"label="当前状态"width="250px"show-overflow-tooltipalign="center"><templatescope="scope">...
2019-09-18 18:11:00 5584
转载 mysql与java对应类型
===========java注入数据库==========java类型 mysql类型 成功与否date date yesdate time nodate timestamp nodate datetime notime date notime time yestime timestamp notime datetime notimestamp date yestimestamp ti...
2019-09-05 10:51:00 133
转载 一级二级缓存
转载:https://blog.csdn.net/henuhaigang/article/details/70991174一级缓存:一级缓存就是停留在sqlsession级别的,它是用一个hashmap来保存的。也就是你使用比如:<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameter...
2019-06-21 09:27:00 162
转载 mysql
在cmd中进入旧版mysql安装目录下的bin目录。我的目录(默认安装位置)是: C:\Program Files\MySQL\MySQL Server 5.5\bin 注意:具体目录请以您机器上的mysql安装目录及mysql版本为准。备份所有数据库。在cmd中键入命令:mysqldump --all-database > D:\all_database.sql -u r...
2019-06-04 16:43:00 136
转载 贾琏欲执事
有点意思可以看看。https://www.cnblogs.com/carlosouyang/p/10889724.html转载于:https://www.cnblogs.com/DIVEY/p/10890843.html
2019-05-19 21:13:00 226
转载 登陆拦截器Interceptor
拦截器的目的是什么?当然是,拦截非法操作,我们需要登陆的,和不需要登陆的需求。开始进行操作:第一步:建立需要拦截的对象,如我自己建立的Iterceptorpublic class LoginInterceptor implements HandlerInterceptor{ @Override public boolean preHandl...
2019-05-16 17:09:00 248
转载 模板下载
/*** 描述:下载外部案件导入模板* @throws Exception*/@RequestMapping(value = "/downloadExcel")@ResponseBodypublic void downloadExcel(HttpServletResponse res, HttpServletRequest req,String name) t...
2019-05-09 17:11:00 240
转载 闲来无事,日常冒泡
public class BubbleSort { 2 public static void main(String[] args){ 3 int score[] = {60,80,75,65,89,90,100,59}; 4 for (int i=0; i<score.leng...
2019-04-10 13:03:00 86
转载 springboot下载excel模板
/*** 描述:下载外部案件导入模板* @throws Exception*/@RequestMapping(value = "/downloadExcel")@ResponseBodypublic void downloadExcel(HttpServletResponse res, HttpServletRequest req,String name) throws Exceptio...
2019-03-26 10:23:00 192
转载 mybatis删除操作
<delete id="deleteArea" parameterType="java.util.Map"> DELETE FROM area_range WHERE area_id=#{area_id,jdbcType=VARCHAR} </delete>记住返回删除的记录条数。转载于:https://www.c...
2019-01-31 17:57:00 352
转载 web页面前图标
学习教父bestcsdn,浏览器的选项卡标题前有时会有一个图标,在head标签对之间加入<link rel="shortcut icon" href="favicon.ico" /> ,将link rel设置为shortcut icon这个值,然后在href设置好路径就可以了,如favicon.html的代码如下<html><head>...
2019-01-21 15:23:00 124
转载 leetcode收获
left outer join table on distinct唯一值,distinct必须放在开头limit 1,1 返回第二值 group by having count()>1 累加SELECT * FROM user WHERE name like CONCAT('%',#{name},'%') DATEDIFF() 函数返回两个日期之间...
2019-01-07 11:36:00 89
转载 springboot_poi思路
开发工具:eclipsejar包管理:maven框架使用:springboot+poi+thymeleaf1.首先导入pom.xml<dependency><groupId>org.apache.poi</groupId><artifactId>poi</artifactId><versio...
2019-01-07 11:34:00 136
转载 Java实体类的属性类型与mysql数据库表字段类型对应表
感谢原文博主https://blog.csdn.net/Hyo555/article/details/81943340还有些经常用到的mysql语句-- 新增表结构DROP TABLE IF EXISTS `servicnn`;CREATE TABLE `servin` ( `id` int(11) NOT NULL AUTO_INCREMENT, `op...
2019-01-07 11:34:00 743
转载 $ is not defined解决方案
找半天原因,就一點直接上图,把你引入的js文件,放在jquery.min.js后面就可以了,页面的加载顺序不同所以位置放置不一样再顺带写上jquery+ajax的代码吧$.ajax({ type : 'POST', url : 'export.do', contentTy...
2019-01-04 11:07:00 413
转载 thymeleaf前端通用格式
<!DOCTYPE html><html xmlns:th="http://www.thymeleaf.org"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Insert title her...
2019-01-03 11:45:00 166
转载 springboot扫描不到mapper,解决方法
@ComponentScan(basePackages = {"com.dive"})@MapperScan("com.dive.dao")贼气,直接上货以下是文档目录转载于:https://www.cnblogs.com/DIVEY/p/10209820.html
2019-01-02 17:39:00 1576
转载 关于面试问到ajax与SSM框架,登陆验证
不比比,直接上代码JSP页面,<body> <form action="" method="post" > <input name="username" type="text" id="username" /> <input name="password" type="password" id="password" /> ...
2018-11-07 13:14:00 108
转载 java序列化
关于序列化什么是序列化?学过java的人大部分都知道,一个对象以流的形式进行传输,叫做序列化。该对象所对应的类,必须是实现Serializable接口。为什么序列化?感觉也没有用到序列化,但是,注意但是,在我们实体bean时,int、long、boolean类型等,都是基本数据类型,数据库里面有与之对应的数据结构。我们以为的没有进行序列化,其实是在声明的各个不同变...
2018-09-13 19:02:00 85
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人