public class 数据类型学习 { public static void main(String[] args) { int i = 10; int i2 = 010;//8进制0 int i3 = 0x10;//16进制0x //long i4 = 40L; //Long类型要在数字后面加 ...
分类:
其他好文 时间:
2021-06-29 15:49:06
阅读次数:
0
在实现分库分表的情况下,数据库自增主键已经无法保证在集群中是全局唯一的主键了,因此mycat提供了全局的sequence,并且提供了本地配置、数据库配置等多种实现方式。 1. 本地文件方式 采用该方式,mycat将sequence配置到classpath目录的sequence_conf.proper ...
分类:
其他好文 时间:
2021-06-19 18:40:35
阅读次数:
0
我们在外出旅行时,通常需要在酒店App中预订酒店。那么,在酒店App中是如何获取用户地理位置信息从而实现 “附近的酒店”的功能查找?为此,我开发了一款名为Hotel Booking的应用。 本文中,我将集成定位服务,并介绍如何使用getLastlocation和getLocationWithAddr ...
配置文件 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-ins ...
分类:
其他好文 时间:
2021-06-15 18:33:43
阅读次数:
0
首先简单阐述下什么是SPI:SPI 全称为 (Service Provider Interface) ,是JDK内置的一种服务提供发现机制。目前有不少框架用它来做服务的扩展发现,简单来说,就是一种动态替换发现的机制。使用SPI机制的优势是实现解耦,使得第三方服务模块的装配控制逻辑与调用者的业务代码分 ...
分类:
其他好文 时间:
2021-06-11 18:26:49
阅读次数:
0
一、静态文件配置 1、默认情况下,静态文件映射模板为:/**,映射路径为:"classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/",见 WebMvcPro ...
分类:
编程语言 时间:
2021-06-08 23:40:17
阅读次数:
0
1.安装wix 3.XX 下载二进制包(wix311-binaries.zip)解压并添加根目录路径到环境变量path中(D:\Program\openjdk\wix) 2.打包成便携执行程序(https://ravenxrz.ink/archives/421e5ad2.html) 目录结构 在空白 ...
分类:
编程语言 时间:
2021-06-05 18:16:23
阅读次数:
0
ssm实现qq邮箱发送验证码 导入maven依赖 <!--邮箱验证码--> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>5.1 ...
分类:
其他好文 时间:
2021-06-04 19:09:34
阅读次数:
0
修改build.gradle文件 // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { goog ...
分类:
移动开发 时间:
2021-06-04 19:09:13
阅读次数:
0
spring: #thymeleaf thymeleaf: cache: false prefix: classpath:/templates/ check-template-location: true suffix: .html encoding: utf-8 mode: HTML #这个是关键 ...
分类:
编程语言 时间:
2021-06-02 19:47:35
阅读次数:
0