……

2022年4月12日

摘要: 本人博客会弄一些 案例 常见的错误信息 博客链接: https://jieoyjj.gitee.io/itonte-project-separation/ 阅读全文

posted @ 2022-04-12 18:55 ITOTone 阅读(37) 评论(0) 推荐(0) 编辑

2021年7月21日

摘要: 笔记大全: https://www.wolai.com/itonte/6Nc2huGSG933gFEcAePiyD?theme=light 阅读全文

posted @ 2021-07-21 01:04 ITOTone 阅读(94) 评论(0) 推荐(0) 编辑

2020年12月18日

摘要: 第一步 第二步 第三步 第四步 添加jsp 依赖 创建webapp 在 找到你自己的webapp 在yml 中配置 mapper 实体类 业务层 controller q启动 效果 阅读全文

posted @ 2020-12-18 10:21 ITOTone 阅读(87) 评论(0) 推荐(0) 编辑

2020年10月15日

摘要: C3p0 -properties 配置 小案例 实体类 :自己编写/// 第一步 : 导入需要的jar 第二步:在src 下面 新建 文件 c3p0.properties下面: 第三步:新建一个工具类: 编写 c3p0.properties连接数据库 配置: 第四步: 新建一个 通用dao 第五步: 阅读全文

posted @ 2020-10-15 17:26 ITOTone 阅读(37) 评论(0) 推荐(0) 编辑

2020年10月10日

摘要: Spring 注解 @Configuration 这个代表是一个配置类 他和那些xml 文件是一样的 @Scope("singleton") singleton 表示单列模式 O行模式 prototype @Import(jie.class) 这个就是xml中的导入 其他xml文件 这里是 对象点c 阅读全文

posted @ 2020-10-10 16:31 ITOTone 阅读(119) 评论(0) 推荐(0) 编辑

2020年9月17日

摘要: xml 配置 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-i 阅读全文

posted @ 2020-09-17 22:20 ITOTone 阅读(284) 评论(0) 推荐(0) 编辑

2020年9月16日

摘要: 方法一(建议):if ($("#checkbox-id").get(0).checked) { // do something}感谢豆瓣绿补充:if ($("#checkbox-id")[0].checked) { // do something}方法二(建议):if($('#checkbox-id 阅读全文

posted @ 2020-09-16 18:51 ITOTone 阅读(468) 评论(0) 推荐(0) 编辑

摘要: //生成6位随机数字 System.out.println((int)((Math.random()*9+1)*100000)); //生成5位随机数字 System.out.println((int)((Math.random()*9+1)*10000)); //生成4位随机数字 System.o 阅读全文

posted @ 2020-09-16 18:48 ITOTone 阅读(1123) 评论(0) 推荐(0) 编辑

2020年3月29日

摘要: ITOTone笔记-HTML+CSS 使用HTML+CSS开发商业站点 1.1. HTML基础 title 页面标题标签: 用法: <title>网页的标题</title> H1~H6 文本标题标签: 用法: <h1>文字标题一</h1> <h2>文字标题二</h2> <h3>文字标题三</h3> 阅读全文

posted @ 2020-03-29 01:40 ITOTone 阅读(46) 评论(0) 推荐(0) 编辑

2020年3月28日

摘要: JS笔记大全 第一章JS 1.JavaScript:客户端脚本语言 客户端:用户端,是为用户提供本地服务的一个程序 服务端:提供资源,提供服务,保护客户端的数据 写动态网页 1995年,网景发展而来 ECMA 统一的一个标准,JavaScript(ECMAScript) 2.网页的组成 HTML(超 阅读全文

posted @ 2020-03-28 23:20 ITOTone 阅读(43) 评论(0) 推荐(0) 编辑