1、yml文件 #spring datasource spring.datasource.url=jdbc:mysql:///db_notice?serverTimezone=GMT%2B8&charactterEncoding=uft8 spring.datasource.username=roo ...
分类:
编程语言 时间:
2021-04-21 12:14:39
阅读次数:
0
概念:泛型(Generics)是指在定义函数、接口或者类的时候, 不预先指定其类型,而是在使用是手动指定其类型的一种特性 10.1、使用场景 我们需要创建一个函数, 这个函数会返回任何它传入的值。 function identity (arg: any): any { return arg } id ...
分类:
其他好文 时间:
2021-04-21 12:10:31
阅读次数:
0
spring: kafka: bootstrap-servers: 112.126.74.249:9092,112.126.74.249:9093 ###########【初始化生产者配置】########### producer: # 应答级别:多少个分区副本备份完成时向生产者发送ack确认(可选 ...
分类:
其他好文 时间:
2021-04-21 12:08:09
阅读次数:
0
@Scope注解是springIoc容器中的一个作用域,在 Spring IoC 容器中具有以下几种作用域: 基本作用域singleton(单例) prototype(多例) Web 作用域(reqeust、session、globalsession) 自定义作用域 参数 singleton单例模式 ...
分类:
其他好文 时间:
2021-04-21 11:54:59
阅读次数:
0
我们想要开发板上面烧写 busybox 文件系统,我们首先将 busybox 镜像拷贝到 dhcp 目录下,busybox镜像在终结者 ULL 光盘资料\i.MX6ULL 终结者光盘资料\08_开发板系统镜像\03_文件系统镜像\01_Busybox文件系统可以找到,如图 89.4.1 所示:然后执 ...
分类:
其他好文 时间:
2021-04-21 11:52:17
阅读次数:
0
open -n /Applications/Google\ Chrome.app/ --args --disable-web-security --user-data-dir=/Users/hooliy/Documents/MyChromeDevUserData open -n /Applicati ...
分类:
系统相关 时间:
2021-04-21 11:49:55
阅读次数:
0
1. Overview JasperReports is an open source reporting library that enables users to create pixel-perfect reports that can be printed or exported in ma ...
分类:
编程语言 时间:
2021-04-21 11:48:33
阅读次数:
0
Spring Boot:The field file exceeds its maximum permitted size of 1048576 bytes. 解决方法一: 根据spring boot 版本不同在application文件添加不同的配置 Spring Boot 1.3 或之前的版本: ...
分类:
编程语言 时间:
2021-04-21 11:47:02
阅读次数:
0
数据仓库之数据模型 关于数据仓库的概念,这里不再累赘。先看下面的图(数据仓库建设的7个主要环节): 本文,主要针对第三块数据仓库模型设计来讨论交流,尤其是互联网行业。 一、关于数据仓库数据模型 1. 数据仓库数据模型是指使用实体、属性及其关系对企业运营和逻辑规则进行统一的定义、编码和命名;是业务人员 ...
分类:
其他好文 时间:
2021-04-20 15:42:53
阅读次数:
0
Spring-拦截器学习 拦截器概述 SpringMVC的处理器拦截器类似于Servlet开发中的过滤器Filter,用于对处理器进行预处理和后处理。开发者可以自己定义一些拦截器来实现特定的功能。 **过滤器与拦截器的区别:**拦截器是AOP思想的具体应用。 过滤器 servlet规范中的一部分,任 ...
分类:
编程语言 时间:
2021-04-20 15:41:50
阅读次数:
0