09 2022 档案
SpringBoot中写前端代码JSP、HTML、thymeleaf、wicket
摘要:为什么spring boot不能很好的支持jsp?:https://www.zhihu.com/question/61385975 在springboot中使用jsp:https://blog.csdn.net/cflsup/article/details/123089542 >>freemaker
阅读全文
SL 249-2012 中国河流代码河流编码(Code for China river)2012年编
摘要:1. 范围 本标准规定了全国流域面积大于500km2或长度大于30km的河流,以及大型、重要中型水库和水闸所在河流的代码。 注:本标准以国家测绘局1:25万水系图为基础数据,参照经水利部及各流域机构审定的1:5万水系图编制。 AFD16006 参考:https://www.docin.com/p-1
阅读全文
图形学入门(闫令琪)
摘要:Lecture 01 : Overview of Computer Graphics Lecture 02 : Review of Linear Algebra Lecture 03 : Transformation Lecture 04 : Transformation Count. Lectur
阅读全文
unity安装教程
摘要:参考:https://baijiahao.baidu.com/s?id=1739504876410897821&wfr=spider&for=pc 除了游戏以外,Unity还被广泛的用于建筑可视化、实时三维动画等类型互动内容的综合型创作活动。 加载地形。。切图 加载3dtiles >>快速入门: 第
阅读全文
postgis: "public.geometry" 不存在
该文被密码保护。
python list
摘要:Python有6个序列的内置类型,但最常见的是列表和元组。 参考:https://www.runoob.com/python/python-lists.html 实例: #!/usr/bin/python # -*- coding: UTF-8 -*- list = [] ## 空列表 list.a
阅读全文
python对文件名排序
摘要:import numpy as np import os img_path='./img/' img_list=os.listdir(img_path) img_list.sort() img_list.sort(key = lambda x: int(x[:-4])) ##文件名按数字排序 img
阅读全文
python遍历文件夹下的所有文件名
摘要:遍历文件夹下的文件名 参考:https://blog.csdn.net/qingjiu3/article/details/122986159 import os path='d:/test' try: path=unicode(path,'utf-8')#经过编码处理 except: pass#py
阅读全文
ENVI/IDL读取tif(遥感)影像&SRTM高程异常校正
该文被密码保护。
java字符串中查找某个字符出现的位置
摘要:string 类的 indexof() 方法和lastIndexOf()方法 区别: indexOf()是从前往后找 lastIndexOf是从字符串末尾开始检索,检索到子字符,则返回子字符在字符串中的位置
阅读全文
java List排序
摘要:2.1 新建 Comparator 比较器 List<Person> list = new ArrayList<Person>() {}; Collections.sort(list, new PersonComparator()); class PersonComparator implement
阅读全文
Type argument cannot be of primitive type
摘要:创建泛型集合List的时候报错,提示为:Type argument cannot be of primitive type 原因:泛型类型参数不能是原始数据类型,而应该是对象。因为在编译时会把带泛型的转换成Object类型,而基本数据类型不属于Object,所以比如想放int类型,就需要使用它的封装
阅读全文
requestbody参数不为空检校
摘要:@RequestBody入参字段判空校验,后端@Valid参数校验,内部类参数校验:https://blog.csdn.net/L9009121314/article/details/122296787 @NotEmpty,@NotNull和@NotBlank的区别:https://blog.csd
阅读全文
spring data连接postgresql实现CRUD
该文被密码保护。
spring data jpa和hibernate的区别
该文被密码保护。