摘要: JDBC API提供各种操作访问接口 Connection Statement PreparedStatement ResultSet DriverManager:管理jdbc驱动 Connection :连接 Statement(PreparedStatement) :增删改查 CallableS 阅读全文
posted @ 2019-11-15 17:27 本园一帅 阅读(130) 评论(0) 推荐(0) 编辑
摘要: jsp页面元素 1.脚本 <% %> 定义局部变量,java语句 <%! %> 定义全局变量,方法 <%= %> 输出表达式 等价于 out.print("hello word"); 2.page指令 <%@ page ... %> page指令的属性 language: jsp脚本使用的语言 im 阅读全文
posted @ 2019-11-15 16:45 本园一帅 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 第一步配置,用户名和邮箱 --global表示全局配置 1 $ git config --global user.name "Your Name" 2 $ git config --global user.email "email@example.com"//下面的仅在本仓库有效 git confi 阅读全文
posted @ 2019-11-15 13:50 本园一帅 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 需要用到连个包,express ,http-proxy-middleware var express=require('express') var proxy = require('http-proxy-middleware') var app=express(); app.all("*",func 阅读全文
posted @ 2019-11-15 08:56 本园一帅 阅读(311) 评论(0) 推荐(0) 编辑