官网:http://maven.apache.org/download.cgi 配置环境变量:Path:"../apache-maven-3.6.3/bin" 检验版本命令:mvn -v 配置仓库位置: 位置:conf/settings.xml <localRepository>d:/maven/r ...
分类:
其他好文 时间:
2020-07-07 00:26:32
阅读次数:
69
1 判断某个注解是否存在 判断某个注解是否存在于Class、Field、Method或Constructor: Class.isAnnotationPresent(Class) Field.isAnnotationPresent(Class) Method.isAnnotationPresent(C ...
分类:
其他好文 时间:
2020-07-06 19:43:38
阅读次数:
63
1、工作原理 django通过urlconf来映射视图函数,只区分路径,不区分http方法 Django确定要使用的根URLconf模块,一般是在settings中的ROOT_URLCONF设置的值。 Django加载该URLconf模块并查找变量 urlpatterns,它是一个列表django. ...
分类:
Web程序 时间:
2020-07-06 16:00:17
阅读次数:
46
1.Spring Boot是一个简化Spring开发的框架。用来监护spring应用开发,约定大于配置,去繁就简,just run 就能创建一个独立的,产品级的应用。 我们在使用Spring Boot时只需要配置相应的Spring Boot就可以用所有的Spring组件,简单的说,spring bo ...
分类:
编程语言 时间:
2020-07-06 14:33:27
阅读次数:
55
集合名: stock stock 字段 { "changeMethod": "集中竞价", "chgPlan": false, "stockId": "311647", "announcementId": 31742356, "updateTime": "2020-06-11 20:24:40.0" ...
分类:
数据库 时间:
2020-07-05 21:14:43
阅读次数:
79
安装 sudo add-apt-repository ppa:gerardpuig/ppa sudo apt update sudo apt install ubuntu-cleaner 卸载: sudo apt remove ubuntu-cleaner && sudo apt autoremov ...
分类:
系统相关 时间:
2020-07-05 13:55:34
阅读次数:
198
使用pytorch实现的线性回归, 闲言少叙,直接上代码,客官请看: 1 import torch 2 import torch.nn as nn 3 import numpy as np 4 import matplotlib.pyplot as plt 5 6 #设置相关参数 7 input_s ...
分类:
其他好文 时间:
2020-07-04 22:22:52
阅读次数:
74
Native Query throw exception dto code import lombok.Value; @Value public class IdsOnly { Integer id; String otherId; } repository public interface Tes ...
分类:
编程语言 时间:
2020-07-03 11:00:36
阅读次数:
147
#!/user/bin/python3# -*- coding: utf-8 -*-# @Time : 2020/7/2 20:11# @Author :Test_zhangping# @Email :981874735@qq.com# @File :api_config.pyimport os# ...
去掉代理 2 去掉build.gradle中的 google,与jcenter,替换为阿里云 //google() //jcenter() 替换为 maven { url 'https://maven.aliyun.com/nexus/content/repositories/google' } m ...
分类:
移动开发 时间:
2020-07-02 00:02:16
阅读次数:
81