一、什么是springboot? springboot是为了尽可能快的跑起来 Spring 应用程序并且尽可能减少你的配置文件 它默认配置了很多框架的使用方式,就像maven整合了所有的jar包,spring boot整合了所有的框架 二、springboot作用 SSM 项目需要以下过程 : 1、 ...
分类:
编程语言 时间:
2020-01-02 20:51:52
阅读次数:
106
//first High second Lowvoid process32BitConvertToDouble6Bit(float source,uint16_t &first,uint16_t &second){ uint32_t v_tmp; qDebug() << v_tmp; v_tmp = ...
分类:
其他好文 时间:
2020-01-02 18:31:12
阅读次数:
150
Django的缓存配置提供了6种方式,如下: 1 1.开发者调试缓存(此模式为开发调试使用,实际上不执行任何操作) 2 CACHES = { 3 'default': { 4 'BACKEND': 'django.core.cache.backends.locmem.DummyCache', # 指 ...
分类:
其他好文 时间:
2020-01-02 14:15:42
阅读次数:
94
废话不多说,先上效果图,再上源码!!!! 1.效果图 2.源码 <template> <view class="content"> <scroll-view scroll-x="true" class="scroll"> <view class="box"> <image src="http://b ...
分类:
移动开发 时间:
2020-01-01 18:33:14
阅读次数:
114
场景 在将Android Studio的 .AndroidStudio目录修改为别的目录后,打开AS,提示更新,点击更新后提示: Connection Error,Temp directory inside installation: 后面跟的是修改之后的目录。 注: 博客: https://blo ...
分类:
移动开发 时间:
2020-01-01 11:45:51
阅读次数:
118
Tomcat是一个开源的Web 应用服务器。是Servlet容器,能运行.class文件,也是Jsp容器,能处理动态资源,还是Web服务器也就是说能处理Hmlt,Css等,Tomcat启动时读取web.xml文件里的信息,加载对应类,然后反射的实例化他们 目录结构 1. bin 存放tomcat的二 ...
分类:
其他好文 时间:
2020-01-01 11:31:31
阅读次数:
75
队列是一个有序列表, 可以使用数组实现, 也可以使用链表实现 队列遵守先进先出的原则 1. 下面使用数组模拟一个队列 public class ArrayQueueDemo { public static void main(String[] args) { ArrayQueue queue = n ...
分类:
编程语言 时间:
2020-01-01 10:22:10
阅读次数:
84
Unix操作系统的诞生 1965 年之前的时候,电脑并不像现在一样普遍,它可不是一般人能碰的起的,除非是军事或者学院的研究机构,而且当时大型主机至多能提供30台终端(30个键盘、显示器),连接一台电脑。 【为了解决数量不够用的问题】 1965 年左后由 贝尔实验室 加入了 麻省理工学院 以及 通用电 ...
分类:
系统相关 时间:
2020-01-01 10:04:47
阅读次数:
114
#include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; ...
分类:
其他好文 时间:
2020-01-01 09:51:22
阅读次数:
59