新组员要描述自己和旧小组的交接情况。描述之前在旧的组做的工作,然后自己是怎么将工作交接到新成员的,可以是通过文档的方式,也可以是通过聊天对话的方式。 在旧的小组里面,,我主要负责以下几点 1. 技术选型考虑到成员的熟悉程度我选择使用了spring+springmvc+hibernate作为后端的只要 ...
分类:
其他好文 时间:
2020-05-19 23:05:35
阅读次数:
70
1、封装hibernateUtil package com.project.util; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.boot.registry.Stan ...
分类:
Web程序 时间:
2020-05-19 22:17:11
阅读次数:
60
fetch var url='https: ; var opt={ method:"GET", credentials: 'include' }; fetch(url,opt).then(response => response.json()) .then(data => {}) random: r ...
分类:
Web程序 时间:
2020-05-19 21:04:50
阅读次数:
80
org.hibernate.AnnotationException: No identifier specified for entity: com.along.entity.emp 你是否也像我一样,因为注释的包错误,而找了近两个小时的程序问题呢 原因: 没有给实体类ID 解决方案: 加入@Id注 ...
分类:
Web程序 时间:
2020-05-19 20:47:44
阅读次数:
59
一、备份数据库并下载到本地 // 设置SQL文件保存文件名 $filename=date("Y-m-d_H-i-s")."-".$cfg_dbname.".sql"; // 所保存的文件名 header("Content-disposition:filename=".$filename); head ...
分类:
数据库 时间:
2020-05-19 14:40:02
阅读次数:
67
问题分析:因为使用@oneToMany默认配置,所以加载方式为lazy。在主表查询时关联表未加载,而主表使用@Data后会实现带关联表属性的hashCode和equals等方法解决方法:1.不使用lazy加载,再多表关系映射上添加注解fetch配置2.@Data替换为@Getter,@Setter等方法3.保留@Data,添加@EqualsAndHashCode(exclude=“关联表属性”)实
分类:
编程语言 时间:
2020-05-19 01:02:07
阅读次数:
62
Git用法总结 [toc] 基本用法 git init git add git commit m git status 显示文件的git状态 版本穿梭 git log 显示HEAD及其祖先的commid记录 git reflog 显示HEAD的指向记录 git reset hard (HEAD^/c ...
分类:
其他好文 时间:
2020-05-18 14:42:33
阅读次数:
64
在爬取京东商品评论区的过程中,发现每个商品的评论区接口相似,应立即意识到: 于是编写函数,通过格式化参数动态改变URL 定义fetch_url为商品ID,page为当前评论页数,将原URL中的id和page用%s占位符代替,后面使用%(fetch_url, page)替换 注意:若是单个参数,使用 ...
分类:
Web程序 时间:
2020-05-18 00:37:10
阅读次数:
120
In this lesson, we build a little app that fetches dog photos from the dog.ceo API, based on a "breed" search field. We want the API call to happen ag ...
1. import import(/* webpackPrefetch: true,webpackChunkName: "yourFileName",webpackPreload: true */ 'LoginModal') import ( /* webpackChunkName: "yourFi ...
分类:
Web程序 时间:
2020-05-15 10:03:52
阅读次数:
88