摘要:
关于如何把git(远程)端项目拉取到idea端的操作可以观看:https://blog.csdn.net/autfish/article/details/52513465 在本地向远程提交文件git add * git commit git status git push origin master 阅读全文
摘要:
最近工作需要,研究了一下git,这个东西挺实用,给我的感觉并不是那么简单使用,我认为还可以再深入的研究一下,挺好玩的~ 说一下我的学习路线: 1、先看的廖老师的博客:https://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c6 阅读全文
摘要:
使用synchronized 处理并发 缺点:无法做到细粒度控制 只适合单点的情况 使用Redis作为分布式锁 setnx命令 设计模式 :使用 !setnx 加锁 getset命令 阅读全文
摘要:
本文来源:https://blog.csdn.net/saytime/article/details/74937664 一、依赖 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifact 阅读全文
摘要:
创建 web项目 配置pom.xml文件 相当于jar包 配置application.yml 配置文件(spring数据库连接、server服务、logging日志等) 创建 package (entity、controller、service、configuration、repository、in 阅读全文
摘要:
加入上传图片jar包 commons-io-2.4.jar commons-fileupload-1.3.jar 在页面form中提交enctype="multipart/form-data"的数据时,需要springmvc对multipart类型的数据进行解析。 在springmvc.xml文件中 阅读全文
摘要:
在web.xml中配置: <filter> <filter-name>CharacterEncodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter- 阅读全文
摘要:
本片博文整理关于Hibernate中级联策略cascade和它导致的异常: Exception in thread "main" org.hibernate.TransientObjectException: object references an unsaved transient instan 阅读全文
摘要:
七月 05, 2018 10:26:54 上午 org.apache.tomcat.util.digester.SetPropertiesRule begin警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting pro 阅读全文
摘要:
java.lang.OutOfMemoryError: PermGen space at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:8 阅读全文