文章分类 - F 结构框架
F结构框架 N插件相关 1数据库 1JPA
摘要:1 jpa原生(框架搭建见3) 1.1 jpa原生_查询对象 dao /** * 根据主键查询,最开始用的是findById,后来因为某种原因废弃掉了 * @author weidoudou * @date 2022/8/4 7:52 * @param inputPropertyA 请添加参数描述
阅读全文
F结构框架 1Spring 1Spring 1常用功能
摘要:1 常规应用 1.1 设置超时时间 @Transactional(timeout=5) @CrpcReference(timeout=5) 其他能力中心的默认是这个 @CrpcReference(registry="AAA" method={@CrpcMethod(name="methodA",ti
阅读全文
F结构框架 N插件相关 Nweb
摘要:1 servlet和servlet-mapping的作用 转载:https://www.jianshu.com/p/6dadc489969a 引用处:https://www.cnblogs.com/1446358788-qq/articles/14932984.html 某个工程的 web.xml
阅读全文
F结构框架 1Spring 3springcloud 1常用功能
摘要:1 pom.xml 1.1 依赖对应功能 <artifactId>spring-boot-autoconfigure</artifactId> <!-- 自动配置的相关依赖,定义starter的时候必须要有 --> <artifactId>spring-boot-configuration-proc
阅读全文
F结构框架 1Spring 2Springboot 1常见功能
摘要:1 idea集成 1.1 yml自动补全 a 社区版:file--》settings--》plugins--》Spring Assis--》安装选中之后,重启即可。注意,yml文件图标是方格格式 b 非社区版file--》settings--》plugins--》Spring Boot--》安装选中
阅读全文
F结构框架 N插件相关 1数据库 2mybatis
摘要:2 常见错误 2.1 mybatis 配合springboot启动,报错Field XXX required a bean of type XXX that could not be found https://blog.csdn.net/Julycaka/article/details/80622
阅读全文
F结构框架 1Spring 1Spring 2课程相关
摘要:0 Spring课程 0.1 Spring入门篇 目录 https://www.cnblogs.com/1446358788-qq/articles/13070140.html 1 Spring核心 1.1 Spring IOC(控制反转)原理 归纳总结: 控制反转的原理之一:依赖倒置原则 依赖倒置
阅读全文
F结构框架 N插件相关 1maven
摘要:1 maven 安装 1.1 maven安装包简介 conf文件夹下setting.xml文件 1 localRepository标签 此标签用于存储maven本地仓库的路径,默认路径在C:\Users\weijingli(此为当前电脑登录用户)文件夹下. 2 proxies标签 存放是否使用中央仓
阅读全文
F结构框架 2hibernate
摘要:1 JPA 1.1 JPA 的使用 https://blog.csdn.net/qq_40088250/article/details/88414810 1.2 JPA Dao层命名规范 https://blog.csdn.net/weixin_39676773/article/details/80
阅读全文
F结构框架 3struts2
摘要:1 struts2 解耦传值的问题 通常我们用解耦的方式actionContext得到四大scope,用于传值,但是我还有另一种传值的方式: ActionContext.getContext().put("list", list); //这样也行?取出的时候,只要#list,通过value取值(详见
阅读全文