上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页

2021年4月30日

gitblit 记录

摘要: gitblit 非常简单易用的开源免费的git服务端,能满足一般的git server的要求,非常好。 安装非常简单:http://gitblit.github.io/gitblit/ 下载windows或linux版本,默认启动或简单改一下配置文件的端口就能用,不需要数据库。 记录一下遇到的小问题 阅读全文

posted @ 2021-04-30 19:23 webjlwang 阅读(454) 评论(0) 推荐(0)

2021年4月4日

SLF4J: Class path contains multiple SLF4J bindings 问题解决

摘要: SpringBoot 启动后输出: DEBUG StatusLogger org.slf4j.helpers.Log4jLoggerFactory is not on classpath. Good! SLF4J: Class path contains multiple SLF4J binding 阅读全文

posted @ 2021-04-04 18:02 webjlwang 阅读(2085) 评论(0) 推荐(0)

2021年3月7日

Spring Transactional 事务

摘要: 事务管理是应用系统开发中必不可少的一部分。Spring 为事务管理提供了丰富的功能支持。Spring 事务管理分为编码式和声明式的两种方式。编程式事务指的是通过编码方式实现事务;声明式事务基于 AOP,将具体业务逻辑与事务处理解耦。声明式事务管理使业务代码逻辑不受污染, 因此在实际使用中声明式事务用 阅读全文

posted @ 2021-03-07 22:45 webjlwang 阅读(77) 评论(0) 推荐(0)

2021年2月24日

git

摘要: git命令学习:https://oschina.gitee.io/learn-git-branching/ git添加远程仓库,推送内容到master: git remote add origin ssh://user1@server1:29418/testpro/test.git git push 阅读全文

posted @ 2021-02-24 14:28 webjlwang 阅读(32) 评论(0) 推荐(0)

2021年2月23日

Jira

摘要: MySQL 5.7已用了最新驱动,还是不行,怎么回事,非得按要求把mysql.ini重新改一遍吗? 阅读全文

posted @ 2021-02-23 21:25 webjlwang 阅读(36) 评论(0) 推荐(0)

2021年2月5日

微服务与单体服务的对比

摘要: 原文地址:https://xie.infoq.cn/article/e4f0b01a56bc4cdba07bbd185 xcbeyond 发布于: 2021 年 01 月 19 日 越来越多的组织开始放弃单体应用,逐步转向微服务的架构模式–将业务流程分为多个独立的服务。 例如,在一个机票预订中,就可 阅读全文

posted @ 2021-02-05 16:58 webjlwang 阅读(2491) 评论(0) 推荐(0)

2021年1月21日

Freemarker知识点整理

摘要: 关于自定义Directive的介绍:https://freemarker.apache.org/docs/pgui_datamodel_directive.html 还可以这样初始化: <#-- Maybe you have directives that you have implemented 阅读全文

posted @ 2021-01-21 22:41 webjlwang 阅读(174) 评论(0) 推荐(0)

2021年1月20日

layui问题整理

摘要: 1.多个checkbox同名时提交表单的处理 (1)提交表单的处理: //配置 var configs = ";";$("[name='config']").each(function(){ if($(this).prop("checked")){ configs += $(this).val() 阅读全文

posted @ 2021-01-20 16:05 webjlwang 阅读(295) 评论(0) 推荐(0)

2021年1月19日

Spring JPA知识点整理

摘要: Spring JPA介绍官网: https://docs.spring.io/spring-data/jpa/docs/2.4.3/reference/html/#repositories.core-concepts The following table describes the keyword 阅读全文

posted @ 2021-01-19 09:27 webjlwang 阅读(256) 评论(0) 推荐(0)

2021年1月14日

Maven知识点整理

摘要: 分多个模块时,可直接在root直接package打包。 如果在子模块运行打包,此时子模块之间有依赖关系,需要先运行依赖模块的install,即将对应的jar安装到本地仓库,否则运行子模块的package会找不到依赖关系。 如果依赖包有变动影响编译,多次运行install就行了。 maven打包时,如 阅读全文

posted @ 2021-01-14 15:39 webjlwang 阅读(79) 评论(0) 推荐(0)

上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页

导航