- 博客(17)
- 收藏
- 关注
转载 java8
1. Java 8 1.1 生态 Lambda 表达式函数式接口方法引用 / 构造器引用Stream API接口中的默认方法 / 静态方法新时间日期 API其他新特性 1.2 新特性 速度更快代码更少强大的 Stream API便于并行最大化减少空指针异常 Optional ...
2021-12-27 14:45:14 125
原创 2021-06-03
miniui中grid行选中改变颜色html body .mini-grid-row-selected{ background:red }
2021-06-03 10:30:01 100
转载 linux开放端口
查看防火墙状态查看防火墙状态 systemctl status firewalld开启防火墙 systemctl start firewalld 关闭防火墙 systemctl stop firewalld开启防火墙 service firewalld start 若遇到无法开启先用:systemctl unmask firewalld.service 然后:systemctl start firewalld.service开放端口# 添加指定需要开放的端口:firewall
2021-03-19 09:40:26 245
转载 c:forEach的用法
<c:forEach>循环标签可以根据循环条件(通常和el表达式使用,el表达式我们有机会再说,在这里我就默认你会基本的el表达式了),遍历集合并从中取出我们想要的数据。如果在JSP页面中使用JAVA代码来遍历数据,会使页面非常混乱,不利于维护和分析。使用<c:forEach>循环标签可以是页面更加直观、简洁。<c:forEach>有以下的属性:...
2019-11-10 01:51:40 3819
原创 MERGE INTO的使用及时间类型的转换
MERGE INTO $tableName$ t1 USING (select count(*) c from $tableName$ t2 where t2.DAY=to_date(to_char(#kpiSumDay.day#,'yyyy-mm-dd'),'yyyy-mm-dd') AND t2.NAME=#kpiSumDay.name# AND t2.TEAM=#kpiSu...
2019-08-22 00:26:48 506
转载 Json详解以及fastjson使用教程
Json是一种轻量级的数据交换格式,采用一种“键:值”对的文本格式来存储和表示数据,在系统交换数据过程中常常被使用,是一种理想的数据交换语言。在使用Java做Web开发时,不可避免的会遇到Json的使用。下面我们就简单讲一下Json的使用以及fastjson.jar包的使用。一:JSON形式与语法1.1:JSON对象我们先来看以下数据:{ "ID": 1001, "na...
2019-08-05 17:33:28 221
原创 解析字符串中的公式
@Test public void test4() throws ScriptException { String ext2 = "2*t+1"; ext2 = ext2.replace("t", 0.8+""); ScriptEngineManager manager = new ScriptEngineManager(); ScriptEngine engine ...
2019-08-01 10:31:10 395
转载 sql优化
1. 杜绝SELECT *表连接时,绝不允许写select * ,否则按照编码错误Bug处理. 单表查询,一般情况下可以使用select *,但以下几种情况禁用: a、表中包含lob字段(BLOB、CLOB、LONG、LONG RAW等)。 b、表中包含长度较大的字段,如varchar2(1000)以上的字段, 但该SQL实际上并不需要取出该字段的值。...
2019-07-31 14:46:05 149
原创 按值排序
//按值降序排序的方法 public <K, V extends Comparable<? super V>> Map<K, V> sortByDescValue(Map<K, V> map) { List<Map.Entry<K, V>> list = new LinkedList<Ma...
2019-05-24 14:03:41 151
原创 使用xml方式配置事物
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.sprin...
2019-04-24 14:52:32 165
原创 基于xml的AOP配置
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframewor...
2019-04-24 09:42:11 110
原创 spring使用注解配置bean
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springfram...
2019-04-22 15:33:16 173
原创 递归使用案例
//交接班记录补算 public void handMakeup() { //获取当前时间 Date date = new Date(); List<ChildrenSystem> list = childrenSystemDao.getByName(null); for(int i=0; i<list.size(); i++) { System....
2019-03-05 11:36:31 156
原创 通过JDBC在mysql数据库中查询所有表名
public List<String> searchTableNames() throws Exception { List<String> list = new ArrayList<String>(); Class.forName(driverClass); Connection conn = DriverManager.getConnecti...
2019-02-25 15:54:40 5585
原创 Mybatis分页插件PageHelper的使用
1.首先在pom.xml中添加下例代码,导入所需jar<dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>4.0.0</version>&am
2018-07-26 17:08:23 139
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人