报错: The server time zone value '?й???????' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver ...
分类:
数据库 时间:
2020-05-17 16:12:10
阅读次数:
192
下载的sts4在new的时候,发现没有spring,只有spring boot.虽然现在都是注解驱动开发了,但偶尔还是会用到spring配置文件。sts4发现没有spring Bean configuration file选项 解决方法 1. 去官网获取tool3地址 根据自己的版本选择,我下载的是 ...
分类:
编程语言 时间:
2020-05-17 15:55:52
阅读次数:
756
本项目基于B站UP主‘神奇的老黄’的教学视频‘天天生鲜Django项目’,视频讲的非常好,推荐新手观看学习 https://www.bilibili.com/video/BV1vt41147K8?p=1 使用uWSGI做为web服务器 django自带的web服务器是通过python manager ...
分类:
其他好文 时间:
2020-05-17 11:45:15
阅读次数:
89
参考: If you want to keep Spring Boot MVC features and you want to add additional MVC configuration (interceptors, formatters, view controllers, and oth ...
分类:
编程语言 时间:
2020-05-17 01:33:09
阅读次数:
91
Android 7以上通知采用了通道的概念代码也有所不同,下面提供一个工具类,适配不同版本通知的生成; public class NotificationUtils extends ContextWrapper { private NotificationManager manager; publi ...
分类:
移动开发 时间:
2020-05-16 20:24:53
阅读次数:
133
# Author:Winter Liu is coming! # 通过Manager实现进程间通信,但注意数据安全问题 # Manager类提供了字典和列表方法,实质是使用文件,所以并发中会出现数据安全问题 from multiprocessing import Process, Manager, ...
分类:
编程语言 时间:
2020-05-16 18:29:53
阅读次数:
84
private void tryFullScreen(boolean fullScreen) { if (activity instanceof AppCompatActivity) { ActionBar supportActionBar = ((AppCompatActivity) activi ...
分类:
移动开发 时间:
2020-05-16 16:57:50
阅读次数:
70
从github上下载zip很麻烦,分别试过wget和用free download manager和chrome下载,最后,fdm下载下来了。mwget是不行的。 https://github.com/eranif/codelite, 需要安装gtk3的dev包。官网说这样: apt-get inst ...
分类:
其他好文 时间:
2020-05-16 16:31:56
阅读次数:
73
import javax.net.ssl.*;import java.io.*;import java.net.URL; public static String httpsRequest(String requestUrl, String requestMethod, String outputS ...
分类:
其他好文 时间:
2020-05-16 15:16:32
阅读次数:
60
Manager 提供的根 QuerySet 描述了数据库表中的所有对象。但是,通常您只需要选择完整对象集的一个子集。—— Django 文档 REST framework 的通用列表视图的默认行为是返回模型管理器的整个查询集。通常您会希望 API 限制查询集返回的条目。 过滤子类 GenericAP ...
分类:
其他好文 时间:
2020-05-16 15:14:44
阅读次数:
81