- 博客(45)
- 收藏
- 关注
转载 jquery_raty
1 简单的demo <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <...
2015-11-23 12:49:00 271
转载 ztree节点名称和x-editable结合,修改一个字段的名称
截图效果 代码实现 转载于:https://my.oschina.net/u/2441574/blog/518276
2015-10-17 15:14:00 421
转载 Oracle --------时间转换函数(to_date)
to_date('2015-10-10 15:19:53','yyyy-mm-dd hh24:mi:ss') 转载于:https://my.oschina.net/u/2441574/bl...
2015-10-17 14:22:00 121
转载 选项卡的使用(可以随意的切换)
效果图 制作步骤 jsp页面代码 <ulclass="navnav-tabsxuanyuan-tabs"id="tabs"role="tablist"><licla...
2015-10-17 14:19:00 189
转载 jQuery插件——x-editable表单字段实时编辑)--select2
效果图 制作步骤 jsp 代码如下 //这是生成一个datatable时的jsp片段:{title:"栏目","data":"dirName",render:function(data,tpye,row){...
2015-10-17 14:08:00 1647
转载 属性是集合的映射
Set HashSet 无序,不重复 List 有序,可重复 Map 键值对 HashMap 无序,不重复(以key为准,看是否重复) 数组:有序、可重复 Bag:无序、可重复。一个大口袋,向里面扔东西。则无序,可重复。 通过映射信息,就可以构建...
2015-10-05 13:58:00 126
转载 xxx.hbm.xml文件详解(主键配置)
============== 主键: 如果是数字,建议使用包装类型。 identity :主键自动增长 sequence hilo :高地位算法 native :选择本地支持的主键生成策略 assigned :手工指定主键...
2015-10-05 13:24:00 559
转载 查询—criteria
因为criteria是面向对象的方式进行的查询,所以其中的查询涉及到的都是一些对象,而不是sql语句。 public class App { private static SessionFactory sessionFactory = new Configuration()/...
2015-10-05 08:55:00 79
转载 hibernate映射文件详解:xxx.hbm.xml文件详解
一般一个映射文件对应于一个class,即对应于一张表。但是一个映射文件中可以有多个class <hibernate-mapping package="cn.it.domain"> <!-- (name)哪个类,如果在<hibernate-mapping pac...
2015-10-05 08:52:00 212
转载 hibernate入门简介,学习示意图
/*分层结构:View表示层Action /Servlet/或者换成其他的技术数据Jsp模板通过action获取数据,在jsp上显示,上面两者的结合就能实现数据的显示效果Service业务层Dao数据访问层 通过上面的分层,将来想要换掉其中的某一层,就能方便...
2015-10-05 08:33:00 89
转载 hibernate的开发包的结构及hibernate的开发所需要的jar包
转载于:https://my.oschina.net/u/2441574/blog/513533
2015-10-05 08:29:00 108
转载 创建sessionFactory
package cn.it.utils; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.cfg.Configuration; public cl...
2015-10-05 08:26:00 132
转载 hibernate_API简介
-- API简介 Configuration 配置 configure() 如果不指定名称,那么默认就是:hibernate.cfg.xml configure(String resource) 指定名称 addReso...
2015-10-05 08:22:00 80
转载 hiberante中生成表结构的两种方式
生成表结构的两种方式: 1,hbm2ddl.auto 2,使用SchemaExport工具类:Schema(表) public void test() { Configuration cfg = new Configuration().co...
2015-10-05 08:18:00 85
转载 hibernate配置文件:hibernate.cfg.xml详解
Hibernate.cfg.xml文件可以在电脑的任何地方,但是通常在src下面, 通过configure(。。。)可以读取到。 <property name="hibernate.connection.password">root</property> <...
2015-10-05 08:15:00 188
转载 struts2——拦截器
包中的拦截器(可以拦截package中的所有的action) 如果某一个action中已经有了一个拦截器,那么package中的拦截器将不会起作用, 但是如果想要既运用包中的拦截器,有要运用action中的特定的拦截器,那么在action中指定包中的拦截器即可,如下: /...
2015-09-09 21:20:00 78
转载 struts2——多文件上传
/*多文件上传importjava.io.File;importjava.io.IOException;importjava.io.UnsupportedEncodingException;importjava.net.URLEncoder;importjava.u...
2015-09-09 21:08:00 76
转载 struts2——文件上传
/*文件上传1.导入jar2.设置表单的enctype3.在Action中定义File4.将File文件保存到指定的目录中:此时要用到FileUtils这个工具类是commons-io.jar下的类,所以要导入jarpublicclassHelloAction{...
2015-09-09 20:39:00 88
转载 为应用指定多个配置文件
/*为应用指定多个配置文件如果只是使用一个配置文件,那么将使struts.xml配置文件变得非常臃肿,不利于可读性所以要有多个配置文件的存在,以模块划分配置文件<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE struts PU...
2015-08-31 21:56:00 107
转载 struts2的处理流程
一个请求过来之后,在web.xml中如下: 会找StrutsPrepareAndExecuteFilter 这个类,然后调用其中的拦截器:如下图: 转载于:https://m...
2015-08-31 21:45:00 59
转载 struts中常量的定义和一些常用的常量
struts中常量的定义 一些常用的常量 转载于:https://my.oschina.net/u/2441574/blog/499796...
2015-08-31 21:02:00 78
转载 指定struts2处理的请求后缀
/*指定struts2处理的请求后缀默认是。action后缀 <constant name="struts.action.extension" value="do"></constant>那么访问的后缀名将变成。do <constant name="s...
2015-08-31 20:59:00 114
转载 为Action的属性注入值
/*为Action的属性注入值:可以在struts.xml文件中的param中进行配置,依赖注入eg: 在一个Action中有一个属性:savepath <action name="yyy" class="cn.it.action.HelloAction" method="...
2015-08-31 20:46:00 88
转载 前端上传组件Plupload(文件上传)——queue_widget
官网:http://www.plupload.com/ 中文API参考:http://www.cnblogs.com/2050/p/3913184.html <!DOCTYPE html><html xmlns="http://www.w3.org/199...
2015-08-30 10:55:00 392
转载 jQuery插件——x-editable表单字段实时编辑)——官网,官网demo
http://vitalets.github.io/x-editable/docs.html#global 转载于:https://my.oschina.net/u/2441574/blo...
2015-08-29 18:41:00 442
转载 jQuery插件——x-editable表单字段实时编辑)——自定义编辑框
参见:http://vitalets.github.io/x-editable/faq.html To create new input type (widget) just have a look on sources in inputs directory.All inputs a ...
2015-08-29 18:35:00 475
转载 jQuery插件——x-editable表单字段实时编辑)——class样式
参见官网:http://vitalets.github.io/x-editable/docs.html#editable How to customize editable element style? Overwrite css classes, e.g. a.editable-c...
2015-08-29 18:32:00 414
转载 jQuery插件——x-editable表单字段实时编辑)——编辑框的位置
data-placement="right" <aid="state2"class="editableeditable-clickeditable-open"data-title="StarttypingState.."dat...
2015-08-29 18:29:00 271
转载 jQuery插件——x-editable表单字段实时编辑)——自己写的demo
<%@pagecontentType="text/html;charset=UTF-8"%><%@pageimport="com.xuanyuan.bpaf.common.config.URMSConfig"%><%@pageimport="co...
2015-08-29 18:25:00 512
转载 jQuery插件——x-editable表单字段实时编辑)——Validator校验,编辑成功提示
参看官网:http://vitalets.github.io/x-editable/docs.html#editable $('#emailPassword').editable({ validate: function(value) { ...
2015-08-29 18:22:00 872
转载 jQuery插件——x-editable表单字段实时编辑)——getstart
参见官方文档:x-editable 官网 引入js、css文件 <linkhref="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"rel="stylesheet">...
2015-08-29 18:15:00 296
转载 jQuery插件——x-editable表单字段实时编辑)——提交的参数params问题
提交的参数params的写法: 1.以function键值对的方式提交参数 $('#field').editable({...params:function(params){//paramsalreadycontain`name`,`value`...
2015-08-29 17:57:00 687
转载 result配置各种视图转发类型
/*result配置各种视图转发类型在struts1中配置的转发是重定向和内部转发:<action path="/addUI" type="..."> <forward name="add">/index.jsp</forward> <fo...
2015-08-25 20:30:00 79
转载 Action配置中的各项的默认值
/*1.一个请求过来不经过具体的Action,直接到一个UI界面 <package name="first" namespace="/test" extends="struts-default"> <action name="addUI"> ...
2015-08-25 20:29:00 143
转载 Action名称的搜索顺序(点击图片放大查看)
Action名称的搜索顺序 转载于:https://my.oschina.net/u/2441574/blog/497030
2015-08-25 20:12:00 78
转载 struts2配置文件没有提示的问题
/*struts2配置文件没有提示的问题1.联网后自动下载文件:dtd 2.在preference中XML Catalog(直接搜索XML)——点击添加—— location:是dtd文件的位置,可以在struts2包中进行搜索 key Type:URI Key:http:...
2015-08-24 22:02:00 104
转载 struts-defult.xml
<?xmlversion="1.0"encoding="UTF-8"?><!--/**$Id:struts-default.xml8047352009-08-1618:07:10Zmusachy$**LicensedtotheApa...
2015-08-24 21:30:00 162
转载 struts.xml配置文件中的包,命名空间,默认继承的介绍
/*struts.xml配置文件中的包的介绍 <packagename="itcast"namespace="/test"extends="struts-default"><actionname="helloworld"class="cn.it.acti...
2015-08-24 21:21:00 283
转载 搭建struts2的开发环境
搭建struts2的开发环境 加入struts2应用所需要的jar 2.编写struts2的配置文件 /*struts2的配置文件:这个文件需要放在web-inf/classes目录下,所以在类路径下,即:在开发阶段文件放在src目录下...
2015-08-23 22:27:00 53
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人