摘要:
常见函数:http://postgis.net/docs/reference.html ST_GeometryType(geometry) —— 返回几何图形的类型 ST_NDims(geometry) —— 返回几何图形的维数 ST_SRID(geometry) —— 返回几何图形的空间参考标识码
阅读全文
posted @ 2019-12-02 15:20
西门夜说
阅读(1933)
推荐(1)
摘要:
1.Elasticsearch下载地址:https://www.elastic.co/cn/downloads/elasticsearch 2.Elasticsearch-Head下载地址:https://github.com/mobz/elasticsearch-head 3.文件夹 bin:el
阅读全文
posted @ 2019-12-01 20:31
西门夜说
阅读(313)
推荐(0)
摘要:
lucene7以上最低要求jdk1.8 lucene下载地址: http://archive.apache.org/dist/lucene/java/ <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-core<
阅读全文
posted @ 2019-11-28 02:25
西门夜说
阅读(279)
推荐(0)
摘要:
applicationContext.xml: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org
阅读全文
posted @ 2019-11-28 02:01
西门夜说
阅读(268)
推荐(0)
摘要:
package com.ynhrm.common.utils; import com.alibaba.fastjson.JSONObject; import lombok.Data; import org.apache.http.Consts; import org.apache.http.clie
阅读全文
posted @ 2019-11-28 01:26
西门夜说
阅读(30114)
推荐(0)
摘要:
sql四种连接方式demo: 表a 表b a.id与b.parent_id有关系 1.内连接:SELECT a.*,b.* from a INNER JOIN b ON a.id=b.parent_id; 输入结果: 说明:组合两个表中的记录,返回关联字段相符的记录,也就是返回两个表的交集(阴影)部
阅读全文
posted @ 2019-11-22 13:43
西门夜说
阅读(804)
推荐(0)
摘要:
配置文件:#服务配置 server: port: 9002 #spring配置 spring: #应用配置 application: name: ynhrm-system #指定服务名 #数据库连接池 datasource: driver-class-name: com.mysql.jdbc.Dri
阅读全文
posted @ 2019-11-21 09:26
西门夜说
阅读(462)
推荐(0)
摘要:
package com.ynhrm.common.utils;import io.jsonwebtoken.Claims;import io.jsonwebtoken.JwtBuilder;import io.jsonwebtoken.Jwts;import io.jsonwebtoken.Sign
阅读全文
posted @ 2019-11-21 09:21
西门夜说
阅读(2000)
推荐(0)
摘要:
<dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt</artifactId> <version>0.9.0</version></dependency> /** * 通过jwt创建token * @param args *
阅读全文
posted @ 2019-11-21 01:00
西门夜说
阅读(1758)
推荐(0)
摘要:
第一步:自定义组件MyNumberInput.vue<template> <input class="numberInput" type="number" :placeholder="placeholder" v-model="inputData" @keydown="keydownFn" /></
阅读全文
posted @ 2019-11-20 16:54
西门夜说
阅读(4240)
推荐(0)