学习写代码呀

导航

上一页 1 ··· 3 4 5 6 7

2019年9月12日 #

收藏的学习链接

摘要: jar包和war包的介绍和区别: https://www.jianshu.com/p/3b5c45e8e5bd JDBC连接数据库7个步骤: https://www.cnblogs.com/liubin1988/p/7865907.html 阅读全文

posted @ 2019-09-12 10:10 学习写代码呀 阅读(117) 评论(0) 推荐(0) 编辑

2019年9月11日 #

jdbc手动连接数据库查询数据实例

摘要: public class User { public User(){ } public User(int id,String name,int age,String sex,String tel,String addr){ this.id = id; this.name = name; this.a 阅读全文

posted @ 2019-09-11 16:48 学习写代码呀 阅读(773) 评论(0) 推荐(0) 编辑

2019年3月25日 #

元素 'beans' 必须不含字符 [子级], 因为该类型的内容类型为“仅元素”;Syntax error on token "Invalid Character";Server returned HTTP response code: 503 for URL;

摘要: 元素 'beans' 必须不含字符 [子级], 因为该类型的内容类型为“仅元素”:复制的代码有中文空格 Syntax error on token "Invalid Character", delete this token:编码不匹配问题,或者说有中文空格 Server returned HTTP 阅读全文

posted @ 2019-03-25 15:33 学习写代码呀 阅读(454) 评论(0) 推荐(0) 编辑

2019年3月22日 #

电脑卡顿解决方案

摘要: 电脑卡顿解决方案 阅读全文

posted @ 2019-03-22 14:28 学习写代码呀 阅读(607) 评论(0) 推荐(0) 编辑

2019年3月20日 #

maven学习笔记

摘要: 1、依赖范围:compile,test,provided,runtime,system2、传递性依赖:A依赖于B,B依赖于C,则A间接依赖于C,A的依赖范围受B和C影响3、依赖调节原则:当依赖jar包产生重复冲突时,下载jar包路径最近者优先,第一声明者优先4、可选依赖不会被传递,<optional 阅读全文

posted @ 2019-03-20 13:57 学习写代码呀 阅读(134) 评论(0) 推荐(0) 编辑

2019年3月14日 #

各类小常识

摘要: 1、document.mailform.submit();名为mailform的表单的提交2、PropertiesReader.getMessage和Properties文件操作类,获取配置文件内容3、String和Boolean互相转换 String转Boolean: String a = "tr 阅读全文

posted @ 2019-03-14 09:11 学习写代码呀 阅读(154) 评论(0) 推荐(0) 编辑

2019年1月18日 #

Cannot determine embedded database driver class for database type NONE

摘要: springboot+jpa使用自定义配置文件连接数据库报错:Cannot determine embedded database driver class for database type NONE 原因:没有配置数据源dataSource,配置文件加载进来了的。 解决办法:在配置类中配置数据源 阅读全文

posted @ 2019-01-18 16:19 学习写代码呀 阅读(3214) 评论(0) 推荐(0) 编辑

The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar报错

摘要: 缺少jstl依赖解析xml文件,报错jaspException 添加依赖如下: <dependency> <groupId>jstl</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> 阅读全文

posted @ 2019-01-18 16:15 学习写代码呀 阅读(142) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7