2020年9月28日
摘要: package com.tpaic.budget.presentation.controller.preexpense; import java.io.OutputStream;import java.io.UnsupportedEncodingException;import java.math. 阅读全文
posted @ 2020-09-28 17:41 耿耿、余淮 阅读(108) 评论(0) 推荐(0) 编辑
  2020年9月21日
摘要: package com.tpaic.reserve.util; import java.util.List; public class Page<T> { //已知数据 private int pageNum; //当前页,从请求那边传过来。 private int pageSize; //每页显示 阅读全文
posted @ 2020-09-21 15:49 耿耿、余淮 阅读(163) 评论(0) 推荐(0) 编辑
  2019年10月12日
摘要: CREATE OR REPLACE FUNCTION "GET_GUID" RETURN VARCHAR2 AS CURSOR get_max_mca_no ISSELECT "MAX"(substr(GUID, 9, 4))FROM WC_GIFTEXCHANGWHERE substr(GUID, 阅读全文
posted @ 2019-10-12 10:54 耿耿、余淮 阅读(257) 评论(0) 推荐(0) 编辑
  2019年8月16日
摘要: <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 阅读全文
posted @ 2019-08-16 15:40 耿耿、余淮 阅读(281) 评论(0) 推荐(0) 编辑
摘要: <properties> <spring.version>4.2.4.RELEASE</spring.version> <hibernate.version>5.0.7.Final</hibernate.version> <slf4j.version>1.6.6</slf4j.version> <l 阅读全文
posted @ 2019-08-16 15:39 耿耿、余淮 阅读(647) 评论(0) 推荐(0) 编辑
  2019年8月15日
摘要: package cn.kgc.test;import cn.kgc.pojo.Customer;import org.junit.*;import javax.persistence.*;import java.util.List;public class CustomerTest { privat 阅读全文
posted @ 2019-08-15 17:08 耿耿、余淮 阅读(1144) 评论(0) 推荐(0) 编辑
摘要: 【6】 正则表达式应用——实例应用1.验证用户名和密码:("^[a-zA-Z]\w{5,15}$")正确格式:"[A-Z][a-z]_[0-9]"组成,并且第一个字必须为字母6~16位;2.验证电话号码:("^(\d{3,4}-)\d{7,8}$")正确格式:xxx/xxxx-xxxxxxx/xxx 阅读全文
posted @ 2019-08-15 17:02 耿耿、余淮 阅读(145) 评论(0) 推荐(1) 编辑
摘要: -- 作业部分CREATE DATABASE dome_1 CREATE TABLE IF NOT EXISTS dept( d_no INT(11) PRIMARY KEY, d_name VARCHAR(50) NOT NULL, d_location VARCHAR(100))-- 部门表的数 阅读全文
posted @ 2019-08-15 17:01 耿耿、余淮 阅读(537) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 阅读全文
posted @ 2019-08-15 16:43 耿耿、余淮 阅读(163) 评论(0) 推荐(0) 编辑
摘要: package cn.kgc.updatefile;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.sp 阅读全文
posted @ 2019-08-15 16:43 耿耿、余淮 阅读(172) 评论(0) 推荐(0) 编辑