上一页 1 2 3 4 5 6 7 8 9 10 ··· 34 下一页
摘要: 项目样式: SQL: CREATE TABLE `t_user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(32) NOT NULL, `password` varchar(32) NOT NULL, PRIMARY KEY 阅读全文
posted @ 2023-07-04 10:29 临易 阅读(427) 评论(0) 推荐(0) 编辑
摘要: 项目展示: 项目结构: SQL: CREATE TABLE `t_article` ( `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '文章id', `title` varchar(200) DEFAULT NULL COMMENT '文章标题', `co 阅读全文
posted @ 2023-07-04 09:44 临易 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 最终样式: 增: 删: 改: 项目结构: - springboot1.5.9以下兼容jdk1.7- springboot2.x.x版本兼容jdk1.8- springboot3.0及以上版本兼容jdk17- springboot2.1之后的版本已经兼容JDK11 pom.xml: <?xml ver 阅读全文
posted @ 2023-07-04 09:33 临易 阅读(183) 评论(0) 推荐(0) 编辑
摘要: Maven下载地址:https://maven.apache.org/download.cgi 下载后进行解压,记住解压路径。 mvn -v 阅读全文
posted @ 2023-07-04 09:23 临易 阅读(16) 评论(0) 推荐(0) 编辑
摘要: SQL: CREATE TABLE `tb_user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(20) DEFAULT NULL, `password` varchar(20) DEFAULT NULL, `gender` 阅读全文
posted @ 2023-07-04 08:43 临易 阅读(13) 评论(0) 推荐(0) 编辑
摘要: #查询所有内容select * from employeeselect (属性1,属性2,...) from 表名#通过id查询select * from employee where uid = 1select (属性1,属性2,...) from 表名 where 属性 = 指定的属性值#增加i 阅读全文
posted @ 2023-07-04 08:31 临易 阅读(19) 评论(0) 推荐(0) 编辑
摘要: java.lang.RuntimeException: java.lang.RuntimeException: org.codehaus.plexus.component.repository.exc Maven版本过高 ,与你使用的IDEA版本不兼容。 推荐版本:maven3.6(建议)/mave 阅读全文
posted @ 2023-07-04 08:29 临易 阅读(223) 评论(0) 推荐(0) 编辑
摘要: Hello SpringBoot! springboot的启动 1.创建springboot项目。注意选择spring-boot-starter-parent版本。版本兼容适配问题请看下列。 springboot1.5.9以下兼容jdk1.7 springboot2.x.x版本兼容jdk1.8 sp 阅读全文
posted @ 2023-07-04 08:24 临易 阅读(136) 评论(0) 推荐(0) 编辑
摘要: SpringBoot简介 Spring Boot 优点 •可快速构建独立的Spring应用 •直接嵌入Tomcat(无需部署WAR文件) •提供依赖启动器简化构建配置 •极大程度的自动化配置Spring和第三方库 •提供生产就绪功能 •极少的代码生成和XML配置 •Spring Boot是基于Spr 阅读全文
posted @ 2023-07-04 08:19 临易 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 4.11 Date & Time组件 1.TextClock(文本时钟) TextClock是在Android 4.2(API 17)后推出的用来替代DigitalClock的一个控件! TextClock可以以字符串格式显示当前的日期和时间,因此推荐在Android 4.2以后使用TextCloc 阅读全文
posted @ 2023-05-14 23:38 临易 阅读(136) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 34 下一页