- 博客(7)
- 收藏
- 关注
原创 单元测试/数据校验
Jetty<dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>
2018-10-12 16:23:17
581
原创 文件配置
Web-XML配置文件头<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
2018-10-12 16:17:01
153
原创 数据库配置
``JDBC`org.springframeworkspring-jdbc5.1.0.RELEASEMysqlmysqlmysql-connector-java8.0.12连接池com.alibabadruid1.1.11
2018-10-12 16:02:55
184
原创 JDK版本和jetty配置
**<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin&
2018-10-12 16:00:33
1464
1
转载 Oracle数据库操作基本语法
创建表SQL>create table classes(classId number(2),cname varchar2(40),birthday date);添加一个字段SQL>alter table student add (classId number(2));修改字段长度SQL>alter table student modify(xm varc...
2018-10-11 10:34:36
386
原创 AOP设置
Spring的通知类型Spring通知类型按切面功能调用的不同时刻,可以分为提供了5种Advice类型• 前置通知Before advice:在某连接点之前执行的通知,但这个通知不能阻止连接点之前的执行流程(除非它抛出一个异常)。• 后置通知After returning advice:在某连接点正常完成后执行的通知• 异常通知After throwing advice:在方法抛出异常退出...
2018-09-26 21:12:10
244
翻译 Mysql的加链预执释
1、加载驱动Class.forName(“com.mysql.cj.jdbc.Driver”);2、链接数据库Connection conn = DriverManage.getConnection(“url”,”user”,”password”);url : 全局资源定位器url = “jdbc:mysql://localhost:3306/db_test”;user:用户名 (安装...
2018-09-26 21:03:05
469
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人