package cn.sunline.insd.cus.service.controller; import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Arrays;import java. ...
分类:
其他好文 时间:
2020-06-22 17:24:33
阅读次数:
85
代码示例 FileUploadController.java: 1 package com.atguigu.controller; 2 3 import org.springframework.stereotype.Controller; 4 import org.springframework.u ...
分类:
编程语言 时间:
2020-06-22 17:23:08
阅读次数:
61
视图(View)用于展示模型(Model)数据。 view 常用的方式有引用母版页或者不引用母版页 @model IEnumerable<myfirstweb.models.Student> //@model声明controller传入的数据类型,传入的是一个可枚举类型 <html> <head> ...
分类:
Web程序 时间:
2020-06-22 14:44:29
阅读次数:
59
测试代码:https://github.com/kuotian/TestSpring/tree/master/01test_filter_interceptor 首先建立一个SpringBoot工程,增加一个IndexController供测试使用。 @Controller public class ...
分类:
其他好文 时间:
2020-06-22 13:16:53
阅读次数:
51
let obj = { obj1 :{ say:'hi1' }, obj2 :{ say:'hi2' } } let one = obj1 let two = say // 等于 obj.obj1.say // `` 是ESC下 TAB上的哪个键 console.log( obj[`${one}`] ...
分类:
微信 时间:
2020-06-22 13:13:20
阅读次数:
122
package com.data.manger.follow.controller; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.Random; /** * ...
分类:
其他好文 时间:
2020-06-22 12:46:31
阅读次数:
49
应用层 DHCP · DNS · FTP · Gopher · HTTP · IMAP4 · IRC · NNTP · XMPP · POP3 · SIP · SMTP · SNMP · SSH · TELNET · RPC · RTCP · RTP ·RTSP · SDP · SOAP · GTP ...
分类:
其他好文 时间:
2020-06-22 12:39:53
阅读次数:
70
将/etc/profile文件拷贝到/tmp下,并用vim打开/tmp/profile在命令模式下删除行首的空白字符[root@centos7~]#cp/etc/profile/tmp/profile[root@centos7~]#cat/tmp/profile#/etc/profile#Systemwideenvironmentandstartupprograms,forloginsetup#F
分类:
系统相关 时间:
2020-06-22 09:18:53
阅读次数:
95
添加更新与删除数据 添加数据 INSERT语句添加 (当给所有字段添加时,可以不写字段名) INSERT INTO 表名(字段名1,字段名2, ...) VALUES(值1,值2, ...) ; 还有一种添加方法: INSERT INTO 表名 SET 字段名1=值1[(,字段名2=值2,...)] ...
分类:
数据库 时间:
2020-06-22 01:29:26
阅读次数:
64
IO流 1.概念 流:数据传输通道 模型:采用Decorator装饰者模式。依照功能可以对流进行分类。 2.分类 按数据流方向: 输入流 输出流 按传输类型: 这4种均是抽象流,为所有IO流的超类 字节流(用来处理图像,视频,PPT,Word) Reader Writer 字符流(只能处理纯文本) ...
分类:
编程语言 时间:
2020-06-21 23:24:26
阅读次数:
66