摘要: 创建一个springMVC Demo的步骤入上图 dom.xml :项目配置文件,导入该springMVC项目所需要的jar包:1,spring-context;2,spring-web;3,spring-webmvc; web.xml : Student-servlet.xml : Student 阅读全文
posted @ 2017-08-17 21:03 &靖 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 4.0.0 com.rimi SpringJDBCDemo war 0.0.1-SNAPSHOT SpringJDBCDemo Maven Webapp http://maven.apache.org junit junit 3.8.1 ... 阅读全文
posted @ 2017-08-16 21:24 &靖 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 4.0.0 com.rimi SpringDBCP war 0.0.1-SNAPSHOT SpringDBCP Maven Webapp http://maven.apache.org junit junit 3.8.1 test org.spring... 阅读全文
posted @ 2017-08-16 21:08 &靖 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-08-07 17:31 &靖 阅读(205) 评论(0) 推荐(0) 编辑
摘要: package com.j1702.model; //定义类 public class Student { private Integer id; private String name; private Integer age; private String address; public String getName() { ret... 阅读全文
posted @ 2017-07-05 23:16 &靖 阅读(547) 评论(0) 推荐(0) 编辑
摘要: DOM:(Document Object Model)文档对象模型 更多详细内容请访问:http://www.jb51.net/article/55851.htm 阅读全文
posted @ 2017-06-21 16:57 &靖 阅读(142) 评论(0) 推荐(0) 编辑
摘要: BOM:(Browser Object Model)浏览器对象模型 一、BOM语句 1,alert(字符串或变量):警告消息对话框 2,confirm(str):确认消息对话框 3,prompt(str1,str2):提问消息对话框 4,window.open([URL],[窗口名称],[参数字符串 阅读全文
posted @ 2017-06-20 00:05 &靖 阅读(398) 评论(0) 推荐(0) 编辑
摘要: 一,什么是存储过程: 简单的说,就是一组SQL语句集,功能强大,可以实现一些比较复杂的逻辑功能,类似于JAVA语言中的方法; 存储过程跟触发器有点类似,都是一组SQL集,但是存储过程是主动调用的,且功能比触发器更加强大,触发器是某件事触发后自动调用; 二,有哪些特性: 有输入输出参数,可以声明变量, 阅读全文
posted @ 2017-06-07 17:33 &靖 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 1,数据库的备份:pro:需要备份的数据库;mypro.sql:备份产生的备份文件 C:\Users\jfhlg>mysqldump -u root -p pro>d:\mypro.sql //备份到指定路径d:\Enter password: ****** C:\Users\jfhlg> 2,数据 阅读全文
posted @ 2017-06-06 22:50 &靖 阅读(642) 评论(0) 推荐(0) 编辑
摘要: select语句用来从数据表中检索信息;其一般格式为: SELECT what_to_select FROW which_table WHERE conditions_to_satisfy; what_to_select :指出你想要看见的内容,可以是列的一个表,或*表示“所有的列”。 which_ 阅读全文
posted @ 2017-06-06 16:00 &靖 阅读(229) 评论(0) 推荐(0) 编辑