- 博客(7)
- 收藏
- 关注
原创 单元测试/数据校验
Jetty <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>
2018-10-12 16:23:17
585
原创 文件配置
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
154
原创 数据库配置
``JDBC` org.springframework spring-jdbc 5.1.0.RELEASE Mysql mysql mysql-connector-java 8.0.12 连接池 com.alibaba druid 1.1.11
2018-10-12 16:02:55
191
原创 JDK版本和jetty配置
**<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin&
2018-10-12 16:00:33
1467
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
389
原创 AOP设置
Spring的通知类型 Spring通知类型按切面功能调用的不同时刻,可以分为提供了5种Advice类型 • 前置通知Before advice:在某连接点之前执行的通知,但这个通知不能阻止连接点之前的执行流程(除非它抛出一个异常)。 • 后置通知After returning advice:在某连接点正常完成后执行的通知 • 异常通知After throwing advice:在方法抛出异常退出...
2018-09-26 21:12:10
246
翻译 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
474
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人