Date类:日期类·1Data类有两大功能,1把日期解释为年月日时分秒2运行格式化和解析日期字符串·2Date类中的以上两大功能分别被Calendar类和DateFormat类替换掉了·3在date类中出现了大量的以弃用的和过时的方法。DataFormat类:Java.text包中是一个抽象类直接子类SimpleDateFormat作用:格式化日期并解析日期时间,通常用于日期和string字符串之
分类:
其他好文 时间:
2020-11-06 01:29:26
阅读次数:
45
#菜单模块 ##Controller package com.atguigu.atcrowdfunding.controller; import java.util.List; import org.springframework.beans.factory.annotation.Autowired ...
分类:
其他好文 时间:
2020-11-02 10:21:42
阅读次数:
24
/* A simple C program */ #include <stdio.h> int main () { printf("202083290312.\n"); printf("hello,C\n"); printf("I can be hard!"); return 0; getchar; ...
分类:
其他好文 时间:
2020-11-02 10:13:04
阅读次数:
23
工厂模式:主要用于实例化具有公共接口的类。工厂模式可以动态确定哪个类应该被实例化。 工厂模型的形式 工厂模型主要使用以下几种形式之一: 1:简单工厂(Simple Factory)。 2:工厂法(Factory Method)。 3:抽象工厂(抽象工厂)。 简易工厂(简易工厂) 也叫静态工厂,是工厂 ...
分类:
编程语言 时间:
2020-11-01 21:32:35
阅读次数:
22
安装 pip3 install virtualenvwrapper -i https://pypi.douban.com/simple 设置linux的用户配置文件配置virtualenvwrapper vim ~/.bashrc WORKON_HOME=~/My_env # 设置virtualen ...
分类:
移动开发 时间:
2020-11-01 10:42:25
阅读次数:
29
package redis.config; import org.springframework.beans.factory.annotation.Autowired;import org.springframework.data.redis.connection.DataType;import o ...
分类:
其他好文 时间:
2020-10-31 02:05:49
阅读次数:
14
什么是Spring? Spring框架存在的意义就是为了降低耦合度, 根据不同的代码采用不同的方式, 通过IOC来降低主业务逻辑之间的耦合度, 通过AOP来降低系统级服务(如日志、安全、事务等)和主业务逻辑之间的耦合度. 此外还提供了一个Web层的框架Spring MVC. Spring容器 在介绍 ...
分类:
编程语言 时间:
2020-10-31 01:18:17
阅读次数:
16
一,引言 今天分享一个新的Azure 服务 Azure Data Factory(Azure 数据工厂),怎么理解,参考根据官方解释 数据工厂解释:大数据需要可以启用协调和操作过程以将这些巨大的原始数据存储优化为可操作的业务见解的服务。 Azure 数据工厂是为这些复杂的混合提取-转换-加载 (ET ...
分类:
其他好文 时间:
2020-10-30 12:09:30
阅读次数:
16
importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.data.redis.core.RedisTemplate;importorg.springframework.data.redis.core.StringRedisTemplate;importorg.springframe
分类:
其他好文 时间:
2020-10-29 10:36:31
阅读次数:
27
参考: https://www.cnblogs.com/javazhiyin/p/10905294.html https://www.jianshu.com/p/1dec08d290c1 深究Spring中Bean的生命周期 前言 这其实是一道面试题,是我在面试百度的时候被问到的,当时没有答出来(因 ...
分类:
编程语言 时间:
2020-10-29 10:26:24
阅读次数:
25