今天学习了simpleAdapter简单适配器 简单适配器在适配器中作用很大,例如微信qq的消息列表 simpleadapter的五个参数 data是一个 List<Map<String,Object>> data = new ArrayList<>(); Map<String,Object> ma ...
分类:
其他好文 时间:
2021-06-22 17:56:31
阅读次数:
0
最近打算搭一个spring-cloud的框架,并打算整合mybatis-plus的插件。然后却遇到了一个消耗了我十几个钟的问题。 出现的问题是: org.apache.ibatis.binding.BindingException: Invalid bound statement (not foun ...
分类:
编程语言 时间:
2021-06-22 17:47:51
阅读次数:
0
概念回顾 进程与线程 进程:程序的一次执行,它占有一片独有的内存空间。 线程:进程内的一个独立的执行单元。是程序执行的一个完整流程。是CPU的最小调度单元。 多进程运行:一个应用程序可以启动多个实例运行 多线程:一个进程内,同时有多个线程运行。 应用程序必须运行在某个进程的某个线程上;一个进程中至少 ...
分类:
编程语言 时间:
2021-06-21 21:11:44
阅读次数:
0
pom.xml配置 需要添加spring-boot-starter-actuator很重要不要然报错 <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-co ...
分类:
其他好文 时间:
2021-06-21 21:11:16
阅读次数:
0
不定时总结ES6里面的怪姿势! 1·变量 let url = _rural, method = `post`, loading = true, data = { page,page_size, rd_session}, params = { url, method, loading, data}; ...
分类:
其他好文 时间:
2021-06-21 21:10:59
阅读次数:
0
SSM整合 功能点 分页 数据校验 jquery前端校验+JSR303后端校验 ajax Rest风格的URI;使用HTTP协议请求方式的动词,来表示对资 源的操作(GET(查询),POST(新增),PUT(修改),DELETE (删除)) 技术点 基础框架-ssm(SpringMVC+Spring ...
分类:
其他好文 时间:
2021-06-21 21:10:42
阅读次数:
0
使用步骤: 1. npm install element-china-area-data -S 2. import { provinceAndCityData, regionData, provinceAndCityDataPlus, regionDataPlus, CodeToText, Text ...
分类:
其他好文 时间:
2021-06-21 21:09:00
阅读次数:
0
#include<stdio.h> #include<stdlib.h> #define OK 1 #define Error 0 typedef int Status; //栈 typedef struct StackNode { int data; struct StackNode *next; ...
分类:
其他好文 时间:
2021-06-21 20:35:07
阅读次数:
0
前端时间,通过画脑图记录的方式深入分析了一下:spring底层容器的刷新过程,现在拆分为博客,分享一下。后面会附上脑图的原文件,供大家查看。 public class BeanAutowired { public static void main(String[] args) { Applicati ...
分类:
移动开发 时间:
2021-06-21 20:31:10
阅读次数:
0
server: port: 8080 spring: application: name: gateway cloud: gateway: routes: - id: guo-system4 uri: https://www.baidu.com predicates: - Query=smile # ...
分类:
其他好文 时间:
2021-06-21 20:30:01
阅读次数:
0