
记录
liusq_
Java。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Mysql 函数记录
1. 一行转多行 SUBSTRING_INDEX完整表数据长这样:1)将一行拆分为多行SELECT A.id, SUBSTRING_INDEX(SUBSTRING_INDEX(A.ids, ",", B.help_topic_id + 1), ",", -1) AS idsFROM inini AJOIN mysql.help_topic BON A.ID = 2AND B.he...原创 2019-12-30 17:51:35 · 317 阅读 · 2 评论 -
Shell 笔记
#!/bin/sh变量字符串test_first=hellotest_first='hello'test_first="hello"test_second=2# 定义变量 不能有空格# 命名只能使用英文字母,数字和下划线,首个字符不能以数字开头 # 不能使用bash里的关键字echo "hello" = echo hello# 输出结果: hello# 显示普通字符...原创 2019-11-05 10:56:29 · 231 阅读 · 0 评论 -
面试题记录
1. Spring 中 bean 的生命周期1)定义Bean--| 通过xml<bean></bean>的方式(需要Setter方法)--| 基于注解@Component@Value的bean定义(不需要Setter方法)--|基于Java类@Bean的bean定义(需要Setter方法)2)初始化Bean--| xml或注解方式的init-met...原创 2019-08-07 16:32:02 · 219 阅读 · 0 评论 -
Exception记录
记录一个简单的Exceptionjava.lang.IllegalArgumentException: Invalid character found in method name. HTTP method names must be tokens at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11Inpu...原创 2019-08-23 16:01:34 · 1006 阅读 · 0 评论