上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页

2021年11月2日

VsCode搭建一个React项目

摘要: 安装Node.js 使用 npm -v检查安装成功 目前的 node 中都会自带 npm 所以不需要重新下载 直接切换至淘宝镜像即可 1.临时使用 :npm --registry https://registry.npm.taobao.org install express 2.(推荐)持久使用:n 阅读全文

posted @ 2021-11-02 14:21 白嫖老郭 阅读(568) 评论(0) 推荐(0) 编辑

2021年10月30日

SpringBoot2.5.1+Mybatis-Plus3.4.3:(Property ‘sqlSessionFactory‘ or ‘sqlSessionTemplate‘ are required)

摘要: 项目引发这个问题: Property ‘sqlSessionFactory‘ or ‘sqlSessionTemplate‘ are required <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-bo 阅读全文

posted @ 2021-10-30 18:29 白嫖老郭 阅读(717) 评论(0) 推荐(0) 编辑

2021年10月28日

ElasticSearch7.6.1学习笔记-狂神

摘要: ElasticSearch:7.6.1 https://gitee.com/yujie.louis/elastic-search 笔记,代码,安装包等 什么是ElasticSearch? Elasticsearch是一个基于Lucene的搜索服务器。它提供了一个分布式多用户能力的全文搜索引擎,基于R 阅读全文

posted @ 2021-10-28 19:25 白嫖老郭 阅读(193) 评论(0) 推荐(0) 编辑

JDK17都出了,学点JDK11新特性

摘要: JDK8 - 转- JDK11 -转- JDK17 JShell(JDK9开始支持) G:\dowload\JDK\JDK11\jdk-11.0.2\bin > C:\Windows\System32\cmd.exe var 局部变量的类型推导 var 不可以作用修饰成员变量。注意var不是关键字, 阅读全文

posted @ 2021-10-28 19:21 白嫖老郭 阅读(794) 评论(0) 推荐(0) 编辑

2021年9月19日

JUC-学习笔记

摘要: 传统的多线程开发方式 implements Runnable public class oldThreadDev implements Runnable { @Override public void run() { System.out.println("传统多线程基于implements Run 阅读全文

posted @ 2021-09-19 19:50 白嫖老郭 阅读(70) 评论(0) 推荐(0) 编辑

2021年8月21日

Mybatis-Plus通用枚举 -基于jackson(Springboot-web内置)

摘要: 枚举类 使用 @EnumValue注解标识数据库字段 package com.example.enumpackage; import com.baomidou.mybatisplus.annotation.EnumValue; import com.fasterxml.jackson.annotat 阅读全文

posted @ 2021-08-21 23:16 白嫖老郭 阅读(362) 评论(0) 推荐(0) 编辑

Mybatis-plus多数据源 + 数据库连接明文加密

摘要: 核心依赖 <!--mybatis-plus 核心组件--> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.4.3</version> 阅读全文

posted @ 2021-08-21 23:10 白嫖老郭 阅读(1678) 评论(0) 推荐(0) 编辑

Mybatis-plus - ActiveRecord 模式CRUD

摘要: 什么是ActiveRecord模式 ActiveRecord 也属于 ORM 层,由 Rails 最早提出,遵循标准的 ORM 模型:表映射到记录,记录映射到对象,字段映射到对象属性。配合遵循的命名和配置惯例,能够很大程度的快速实现模型的操作,而且简洁易懂。 ActiveRecord 的主要思想是: 阅读全文

posted @ 2021-08-21 19:38 白嫖老郭 阅读(670) 评论(0) 推荐(0) 编辑

Axios 类似于for循环发送批量请求{:axios.all axios.spread}。

摘要: Axios的请求都是异步的!不能用for循环遍历去批量发送请求 那如果我们需要类似与这样的请求怎么办呢 for(let i =0;i<array.length;i++){ axios.post(contentPath + 'invoice/new/updatetitle', JSON.stringi 阅读全文

posted @ 2021-08-21 17:34 白嫖老郭 阅读(1083) 评论(0) 推荐(0) 编辑

2021年8月12日

Axios +Vue + themeleay

摘要: 1.pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> <version>2.1.15.RELEASE</ver 阅读全文

posted @ 2021-08-12 17:18 白嫖老郭 阅读(125) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页

导航