上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页

2017年1月10日

mysql创建索引

摘要: alter table table_name index('列'); 阅读全文

posted @ 2017-01-10 21:31 老邱2 阅读(85) 评论(0) 推荐(0) 编辑

maven整理项目spring配置文件加载问题

摘要: 1,classpath:applicationContext.xml改为classpath*:applicationContext.xml 这么写也是一样的效果:classpath*:/applicationContext.xml 2,在applicationContext.xml引用其它的配置文件 阅读全文

posted @ 2017-01-10 19:44 老邱2 阅读(698) 评论(0) 推荐(0) 编辑

2017年1月9日

js继承

摘要: 1.apply继承 function Anmail(name,age){ this.name=name; this.age=age; this.eat=function(){ alert("Ok") } } function dog(name,age){ Anmail.apply(this, [na 阅读全文

posted @ 2017-01-09 01:54 老邱2 阅读(111) 评论(0) 推荐(0) 编辑

创建对象的方式

摘要: 构造器方式 <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional 阅读全文

posted @ 2017-01-09 01:37 老邱2 阅读(106) 评论(0) 推荐(0) 编辑

js闭包

摘要: 全局与局部 <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional 阅读全文

posted @ 2017-01-09 01:24 老邱2 阅读(100) 评论(0) 推荐(0) 编辑

js两种创建对象方式

摘要: 1 <%@ page language="java" contentType="text/html; charset=ISO-8859-1" 2 pageEncoding="ISO-8859-1"%> 3 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Tr 阅读全文

posted @ 2017-01-09 00:35 老邱2 阅读(210) 评论(0) 推荐(0) 编辑

2017年1月8日

shiro-web整合

摘要: 1.所需要jar 1 <!-- shiro核心包 --> 2 <dependency> 3 <groupId>org.apache.shiro</groupId> 4 <artifactId>shiro-core</artifactId> 5 <version>1.2.5</version> 6 < 阅读全文

posted @ 2017-01-08 04:05 老邱2 阅读(251) 评论(0) 推荐(0) 编辑

shiro连接数据库

摘要: 建一个jdbcRealm.ini java文件 数据库 阅读全文

posted @ 2017-01-08 00:48 老邱2 阅读(432) 评论(0) 推荐(0) 编辑

2017年1月7日

shiro的Helloworld

摘要: 1 package shiro; 2 3 import org.apache.shiro.SecurityUtils; 4 import org.apache.shiro.authc.UsernamePasswordToken; 5 import org.apache.shiro.config.In 阅读全文

posted @ 2017-01-07 23:53 老邱2 阅读(244) 评论(0) 推荐(0) 编辑

UML图

摘要: 三、说明: 1.类图 第一层显示的是类名,如果是抽象类,就用斜体表示。 第二层是类的特性,通常就是字段和属性。 第三层是类的操作,通常是方法和行为。 注意:'+' 表示 public, '-' 表示 private,'#' 表示 protected。 2.接口图 第一层是接口名称 第三层是接口方法, 阅读全文

posted @ 2017-01-07 16:33 老邱2 阅读(128) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页

导航