摘要: pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apac 阅读全文
posted @ 2022-08-20 21:55 前端导师歌谣 阅读(17) 评论(0) 推荐(0)
摘要: pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apac 阅读全文
posted @ 2022-08-20 21:55 前端导师歌谣 阅读(12) 评论(0) 推荐(0)
摘要: 今天朋友发了个maven项目给我看,问我为什么启动不了。说实话,一直用Jfinal都快不会用spring了… 还是决定看看。 接收了文件,是maven构建的,打开eclipse,导入maven项目,然后部署到tomcat,启动tomcat,就报错了:“java.lang.ClassNotFoundE 阅读全文
posted @ 2022-08-20 21:55 前端导师歌谣 阅读(23) 评论(0) 推荐(0)
摘要: pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apac 阅读全文
posted @ 2022-08-20 21:55 前端导师歌谣 阅读(15) 评论(0) 推荐(0)
摘要: 判断一个系统是windows还是linux? import org.junit.jupiter.api.Test; /** * @program: utilsdemo * @description: 判断运行的系统是windows还是linux * @author: zhangyu * @creat 阅读全文
posted @ 2022-08-20 21:55 前端导师歌谣 阅读(63) 评论(0) 推荐(0)
摘要: pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apac 阅读全文
posted @ 2022-08-20 21:55 前端导师歌谣 阅读(20) 评论(0) 推荐(0)
摘要: pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apac 阅读全文
posted @ 2022-08-20 21:55 前端导师歌谣 阅读(13) 评论(0) 推荐(0)
摘要: 1. 查询和Zlotkey相同部门的员工姓名和雇用日期 a) select last_name,hire_date b) from employees c) where department_id = ( d) select department_id e) from employees f) wh 阅读全文
posted @ 2022-08-13 21:30 前端导师歌谣 阅读(84) 评论(0) 推荐(0)
摘要: 51. 利用子查询创建表 myemp, 该表中包含 employees 表的 employee_id(id), last_name(name), salary(sal), email 字段 1). 创建表的同时复制 employees 对应的记录 create table myemp as sele 阅读全文
posted @ 2022-08-13 21:30 前端导师歌谣 阅读(58) 评论(0) 推荐(0)
摘要: --创建表 create table emp3 as select employee_id,last_name,hire_date,salary from employees --查询表 select * from emp3 --插入表 insert into emp3 values(1001,'A 阅读全文
posted @ 2022-08-13 21:30 前端导师歌谣 阅读(36) 评论(0) 推荐(0)