会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
more harder, the more fortunate
MrWang
博客园
|
首页
|
新随笔
|
新文章
|
联系
|
订阅
|
管理
上一页
1
2
3
4
5
6
7
8
9
10
···
14
下一页
2018年9月22日
hibernate---级联保存、级联删除
摘要: 直接上菜: dept.hbm.xml:关键点标蓝色这部分,inverse表示放弃维护外键关系,cascade就不用说了 <hibernate-mapping package="com.cissst.it.dept.entity"> <class name="Dept" table="DEPT1">
阅读全文
posted @ 2018-09-22 19:48 pecool
阅读(1784)
评论(0)
推荐(0)
编辑
ORA-02275: 此表中已经存在这样的引用约束条件
摘要: 问题描述: 针对这个问题,发表一下我的观点。emp表和dept表使用hibernate关联查询时报的错,使用的是非注解形式,和其他一样。他们各自有entity,各自有一个hbm.xml文件,emp表这边配置多对一,dept表这边在set或者list中配置一对多。 consol报错截图如下: 代码片段
阅读全文
posted @ 2018-09-22 19:16 pecool
阅读(3144)
评论(0)
推荐(0)
编辑
hibernate---session查询
摘要: 一、hql语句查询(适合多表) public class MyTest { public static void main(String[] args) { //查询集合 Session session = SessionUtil.openSession(); String hql = "from
阅读全文
posted @ 2018-09-22 09:55 pecool
阅读(320)
评论(0)
推荐(0)
编辑
2018年9月19日
缓存技术--页面缓存
摘要: 1.导入相应jar包: 2.在jsp页面引入oscache指令 <%@ taglib uri="http://www.opensymphony.com/oscache" prefix="oscache" %> 3.jsp小案例 <%=new SimpleDateFormat("yyyy-MM-dd:
阅读全文
posted @ 2018-09-19 12:48 pecool
阅读(168)
评论(0)
推荐(0)
编辑
2018年9月18日
JSON对象和字符串转换
摘要: 1.转字符串 var arr = [{name:'张三',age:23},{name:'李四',age:24},{name:'王五',age:25}]; JSON.stringify(arr); 2.转对象 var str = '{"name":"张三","age":23}'; JSON.parse
阅读全文
posted @ 2018-09-18 15:22 pecool
阅读(170)
评论(0)
推荐(0)
编辑
springMvc---跨服务器文件上传(实测总结)
摘要: 序言: 该案例是采用springMvc实现跨服务器图片上传功能,其中用到的主要类和工具有:CommonsMultipartResolver、jquery.form.js。如果要实现多个文件上传,只需要在input元素中加入multiple="multiple",即可选择多个文件进行上传。另外本文的上
阅读全文
posted @ 2018-09-18 15:12 pecool
阅读(3022)
评论(0)
推荐(0)
编辑
2018年9月16日
springMVC---业务处理流程图和最简单的springMvc搭建截图说明
摘要: 一、springMVC业务处理流程图: 二、如何搭建springMvc框架 1.建立web工程 2.引入jar包 3.创建web.xml文件 4.创建springMvc-servlet.xml文件 5.开始代码书写 三、说明 springMvc是javaEE体系结构中的web层,javaEE体系结构
阅读全文
posted @ 2018-09-16 19:17 pecool
阅读(1347)
评论(0)
推荐(0)
编辑
2018年9月11日
spring--多人开发,模块化配置
摘要: 需要引入开发人员的配置文件: 补记2019-05-2:这种配置不推荐,不利于项目后期的整体维护,而且开发人员自身水平不一,容易造成项目配置混乱 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframewor
阅读全文
posted @ 2018-09-11 20:24 pecool
阅读(873)
评论(0)
推荐(0)
编辑
2018年9月5日
oracle左关联+号表示方式
摘要: 1.emp表和dept表 2.emp表中empno为8888的这条数据,没有部门编号,以emp表为主表,左关联查询部门信息sql语句如下: select * from emp e,dept d where e.deptno = d.deptno(+); 查询出来结果: 3.解释:where条件后 左
阅读全文
posted @ 2018-09-05 22:52 pecool
阅读(6045)
评论(0)
推荐(0)
编辑
2018年9月3日
jdk1.8新特性----接口可以有方法体,子类可以不用重写接口中已实现的方法
摘要: public interface Tree { public static String name="树名"; default public void run1(){ System.out.println(name); }; } public class YangShu implements Tre
阅读全文
posted @ 2018-09-03 16:08 pecool
阅读(1150)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
7
8
9
10
···
14
下一页
公告
/*鼠标跟随效果*/