`
周一Monday
  • 浏览: 347012 次
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
@Entity 作用:设置一个类为实体类 @Entity public class User { }   @Table 作用:设置实体类对应的表,常与@Entity一起使用 参数:name制定表名,不写的话,为实体类的类名 @Entity @Table(name = "tbl_user") public class User { } @Id 作用:设置对象标识符 @Id private Integer id; @GeneratedValue 作用:设置标识符的生成策略,常与@Id一起使用 参数:strategy指定具体的生成策略 ...
1.全选/全不选     <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>jQuery Demo</t ...
1.准备工作     jQuery核心库文件:jquery-1.8.2.js   jquery form 库文件:jquery.form.js   2.html     <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" c ...
1准备工作     导入必要的JS文件   jQuery核心库文件   jquery-1.8.2.js   jquery validation 库文件   jquery-validation-1.10.0\dist\jquery.validate.js   国际化文件(中文) jquery-validation-1.10.0\localization\messages_zh.js   2.html文件     <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN&quo ...
今天用Spring整合Hibernate遇到这么一个异常: Caused by: org.dom4j.DocumentException: Error on line 28 of document  : Element type "property" must be followed by either attribute specifications, ">" or "/>". Nested exception: Element type "property" must be followed by ...
package org.monday.demo; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.SQLException; import org.monday.util.JdbcUtil; /** * 批处理 */ public class BatchMain { public static void main(String[] args) { long start = System.currentTimeMillis(); Str ...
--Oralce存储过程 --输入参数 create or replace procedure insertProc ( v_deptno in dept.deptno%type, v_dname in dept.dname%type, v_loc in dept.loc%type ) is begin insert into dept(deptno,dname,loc) values(v_deptno,v_dname,v_loc); commit; end; --输出参数 create or replace p ...
这次以MySQL与Oralce为例。   先看表结构把: ------------------------处理大数对象----------------- ------------------------MySQL---------------------- --有4种text类型:tinytext、text、mediumtext和longtext create table t_clob ( id integer , resume longtext, primary key(id) ); --有4种blob类型:tinyblob、blob、mediumbl ...

Java反射

其实,自己平时用反射的机会并不多。 但是,貌似将来想写框架的话,基本百分百用到。 本人不才,将来也想写框架试试。   发个代码贴,包含常用的反射,比如:反射属性、反射方法、反射构造方法。   好,贴代码:   ---------------------------------------------------------------------------------------------------------------------------------------   要反射的Java类   package org.monday.app.reflect; ...
package org.monday.app.array; /** * 数组的常见操作 */ public class ArrayMain { public static void main(String[] args) { int[] arr = { 1, 3, 0, 3, -9, 23 }; // show(arr); // System.out.println(max(arr)); // System.out.println(min(arr)); // System.out.println(getIndex(arr, 3)); ...
关于for循环的条件判断 比如:有这么一个数组 int[] arr = { 1, 3, 0, -9, 23 }; 那遍历这个数组我们通常会写这样的方法: public static void show(int[] arr) { for (int i = 0; i < arr.length; i++) { if (i != arr.length - 1) { System.out.print(arr[i] + ","); } else { System.out.print(arr[i]); } } ...
package demo; /** * 使用For循环打印图形 * 规律: * 尖朝上,可以改变条件。让条件随着外循环变化。 * 尖朝下,可以初始化值,让初始化随着外循环变化。 外循环控制行数,内循环控制每一行的列数 */ public class ForMain { public static void main(String[] args) { // method_1(); // method_2(); // method_3(); method_4(); } // ***** // **** // * ...
--声明变量 --普通变量 v_name varchar2(12):='aaa'; v_count number(4); --通过%TYPE属性为变量声明类型 v_ename emp.ename%type; v_sal emp.sal%type; --************************************************************************************************************* --利用匿名块从数据库中查据输出到控制台上 decl ...
准备 create table test ( id number , name varchar2(20), primary key (id) ); insert into test(id,name)values(1,'aaa'); insert into test(id,name)values(2,'bbb'); insert into test(id,name)values(3,'ccc'); commit; select * from test; create table test2 as select * from test; select ...
这里说的是 单选按钮 和 复选框的回显解决办法   有时候用 Struts1/Struts2的自带标签不好控制,建议当MVC框架的标签不好用的时候,还是用原始的Web技术最有效。   例如: 导入标签库 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> ...
Global site tag (gtag.js) - Google Analytics