Oracle表分区处理及全局索引和本地索引 发表于 2019-06-27 | 分类于 base 创建分区表1.按年创建分区: *注:粗体部分可以自行定义(即用双星号标志的地方) 123456789101112131415161718192021222324252627create table **tableName**( **ID NUMBER(20) NOT NULL,** **REMA ... 阅读全文 »
Oracle数据库索引的创建和查询 发表于 2019-06-20 | 分类于 base 索引命名规范:普通索引最好i_开头,唯一索引最好u_开头,primary key索引最好pk_开头 1.创建索引: create index 索引名 on 表名(字段名); 2.查询索引 oracle中表的索引信息存在 user_indexes 和 user_ind_columns 两张表里面, ... 阅读全文 »
commons-io 发表于 2019-06-18 | 分类于 base commons-io架包的妙用1.引入架包: 123456789<dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> ... 阅读全文 »
js中身份证的准确检验 发表于 2019-06-14 | 分类于 base 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798 ... 阅读全文 »
okhttp基本服务请求用法 发表于 2019-06-13 | 分类于 base 此次主要介绍用okhttp进行服务器的基本访问方法如:post、get的基本请求或者post模拟表单上传文件。 第一步引入需要的jar: 123456789<dependency> <groupId>com.squareup.okhttp3</groupId> ... 阅读全文 »
springboot关于Tomcat的配置 发表于 2019-06-06 | 分类于 base 一:Springboot中关于http请求头过大的处理: 注:在相应的配置文件中配置如下参数:此处以xxx.yml文件为例: 123456789 spring: server: tomcat: max-http-header-size : 999999 注:上面的99999为ht ... 阅读全文 »
aop的基本用法 发表于 2019-05-29 | 分类于 java AOP环绕切面的基本用法需要引入的jar: 123456789<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter- ... 阅读全文 »
图片处理(水印,Base64转图片) 发表于 2019-05-29 | 分类于 base Base64格式转图片123456789101112131415161718192021222324252627282930313233343536373839404142 public static boolean Base64ToImage(String imgStr) throws Wx ... 阅读全文 »
java统一数据返回集 发表于 2019-05-24 | 分类于 base 在项目的开发中,不管是前后数据的交互,还是远程接口的调用,我们都需要统一数据的返回格式。 这样我们的代码和开发效率都会规范提升起来。 1.用到的知识点: 需要引入jar: 123456789<dependency> <groupId>org.projectlombok& ... 阅读全文 »
webservice服务搭建与调用 发表于 2019-05-23 | 分类于 base 什么是Web Services: Web Services 是应用程序组件 Web Services 使用开放协议进行通信 Web Services 是独立的(self-contained)并可自我描述 Web Services 可通过使用UDDI来发现 Web Services 可被其他应用程序使 ... 阅读全文 »