自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 问答 (3)
  • 收藏
  • 关注

原创 Java springboot 调用 实时调用大模型响应接口详细教程

Spring WebFlux 是 Spring 5 引入的一种响应式编程模型,支持非阻塞的 HTTP 请求处理,与 Spring MVC 不同,它基于 Reactor 库,支持异步流操作。本教程将详细讲解如何在 Spring Boot 项目中集成 WebFlux。

2024-11-22 13:57:22 622 1

原创 springcloud alibaba nacos config 多共享配置读取 出坑

springcloud alibaba nacos config 多共享配置读取 出坑 nacos 多文件配置 的两种实现方式 1 根据官网的方式 可以设置 spring.cloud.nacos.config.shared-configs[0].data-id=blade.yaml #文件名称 spring.cloud.nacos.config.shared-configs[0].group=DEFAULT_GROUP 默认分组 spring.cloud.nacos.config.sh...

2020-11-04 11:20:13 3197

转载 strut2 动态代理

https://blog.youkuaiyun.com/weixin_38358430/article/details/70809956

2019-01-29 17:38:32 171

转载 struts2:This method: login for action user is not allowed!方法调用不允许

https://blog.youkuaiyun.com/qq_29407009/article/details/51474118

2019-01-29 17:27:40 1705

转载 Struts2方便实用的内置校验器

https://blog.youkuaiyun.com/weixin_40315550/article/details/78979389

2019-01-29 16:10:06 174

原创 关于hibernate 多表连接数据查询出现重复问题解决方案

List list1 = session.createQuery(" from Dept e left join fetch e.emps d where e.dname=‘ACCOUNTING’").list(); HashSet<Dept> set =new HashSet(list1); set.forEach(li->{logger.i...

2019-01-25 16:52:50 750

原创 关于hibernate多表联合查询某些字段的方法

//实在是麻烦 List list1 = session.createQuery(“select e.dname,d.ename from Dept e ,Emp d where d.dept=e”).list(); Iterator it =list1.iterator(); while (it.hasNext()){ Object[] obj =...

2019-01-25 16:15:18 1036

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除