spring
文章平均质量分 60
陈以轩
这个作者很懒,什么都没留下…
展开
-
关于通过ApplicationContext上下文无法获取到feignClient的类(2)
gateway网关Feign调用微服务异常,spring boot 2.7.0 WebFlux必须使用异步原创 2022-11-25 10:13:29 · 989 阅读 · 0 评论 -
关于通过ApplicationContext上下文无法获取到feignClient的类
关于通过ApplicationContext上下文无法获取到feignClient的类原创 2022-11-11 16:58:51 · 1216 阅读 · 0 评论 -
websocket与jwt协议导致报错failed: Error during WebSocket handshake: Unexpected response code: 200
最近用springboot项目搭建了一个基于websocket的聊天模块,''ws://localhost:8080/myWebSocket/ 运行正常,连接也正常。但是把这个模块接入到项目里的时候,就会报错:failed: Error during WebSocket handshake: Unexpected response code: 200原因是因为项目里用到了jwt协议的spring security鉴权问题只要在SecurityConfig.java中修改配置,放过/myWe.原创 2021-11-22 10:07:40 · 2359 阅读 · 0 评论 -
spring.xml配置类属性--喜闻乐见
相信大家在开发的过程中,都会写一些配置文件或者配置类来,毕竟好的编码习惯是不能硬编码的,所以配置文件和配置类就显得很重要了。但是我用久了之后发现,配置文件和配置类确实好用,但是假如有多个配置的话,那么得写多个配置类或者写多个配置文件,这显得有点麻烦,毕竟到时找起来想必也是一脸懵逼。然而最近博主开始把配置写在了spring的xml文件中,发现,根本不需要写那么多的配置类和配置文件了,只需原创 2016-06-30 15:08:08 · 1382 阅读 · 0 评论 -
URLConnection向指定的url发送请求并且带参数
public String urlHtppServer(String httpUrl,String parmer) throws IOException { URL url = new URL(httpUrl); URLConnection connection = url.openConnection(); connection.setDoOutput(true);原创 2015-12-23 15:40:01 · 1548 阅读 · 0 评论 -
spring定时器配置
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:util="http://www.springframework.org/schema/util" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/原创 2014-08-06 15:50:35 · 565 阅读 · 0 评论 -
spring scope="prototype"&nb…
<bean id="meetAction"class="com.web.actions.MeetsAction" scope="prototype"> <propertyname="meetsService" ref="meetsService" /> scope="prototype"没写的问题,项目中对一个表的增删该操作是用一个action,这个action有ad原创 2014-03-20 17:24:13 · 531 阅读 · 0 评论 -
基于web.xml详解
spring的配置文件在启动时,加载的是web-info目录下的applicationContext.xml,运行时使用的是web-info/classes目录下的applicationContext.xml。contextConfigLocationclasspath*:**/applicationContext-*.xml "**/"表示的是任意目录原创 2014-03-20 17:27:00 · 402 阅读 · 0 评论 -
转:String之HibernateTemplate经典…
一、find(StringqueryString); 示例:this.getHibernateTemplate().find("frombean.User"); 返回所有User对象 二、find(String queryString , Objectvalue); 示例:this.getHibernateTemplate原创 2014-03-20 17:26:00 · 441 阅读 · 0 评论 -
Spring中 @Autowired标签与&n…
Spring不但支持自己定义的@Autowired注解,还支持由JSR-250规范定义的几个注解,如:@Resource、 @PostConstruct及@PreDestroy。1.@Autowired @Autowired是Spring提供的,需导入 Package:org.springframework.beans.factory.annotation.Autow原创 2014-03-20 17:26:49 · 631 阅读 · 0 评论 -
Spring管理hibernate
Spring管理hibernate (a)配置spring数据源 hibernate推荐: c3p0连接池 spring官方推荐使用连接池:DBCP连接池 (b)添加DBCP连接池类库 commons-pool.jar commons-dbcp.jar (c)连接池类:原创 2014-03-20 17:26:35 · 664 阅读 · 0 评论 -
转:org.springframework.dao.Inval…
转载:文章来源:http://lucky16.iteye.com/blog/673903此异常是由于Spring提供的OpenSession In View而引起的。开启OpenSessionInViewFilter这个过滤器的时候FlushMode就已经被默认设置为了MANUAL,如果FlushMode是MANUAL或NEVEL,在操作过程中hibernate会将事务设置为re原创 2014-03-20 17:26:04 · 460 阅读 · 0 评论 -
PROPAGATION_REQUIRED
原文地址:PROPAGATION_REQUIRED作者:小徐事务传播行为种类Spring在TransactionDefinition接口中规定了7种类型的事务传播行为,它们规定了事务方法和事务方法发生嵌套调用时事务如何进行传播:表1事务传播行为类型事务传播行为类型说明PROPAGATION_REQUIRED如果当前没有事务,就新建一个事务,如果已经存转载 2014-03-20 17:25:57 · 1572 阅读 · 0 评论 -
转:spring和hibernate整合的时候…
在整合Hibernate和Spring时出现,Invalid property 'annotatedClasses' of beanclass注解方式定义实体bean --><bean id="sessionFactory"class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean"原创 2014-03-20 17:24:17 · 431 阅读 · 0 评论 -
转:<context:annotation-config/>
使用简化配置Spring 2.1 添加了一个新的 context 的 Schema命名空间,该命名空间对注释驱动、属性文件引入、加载期织入等功能提供了便捷的配置。我们知道注释本身是不会做任何事情的,它仅提供元数据信息。要使元数据信息真正起作用,必须让负责处理这些元数据的处理器工作起来。而我们前面所介绍的AutowiredAnnotationBeanPostProcessor和Comm原创 2014-03-20 17:24:09 · 540 阅读 · 0 评论 -
spring注解@Component、@Repositor…
Spring2.5 中除了提供 @Component 注释外,还定义了几个拥有特殊语义的注释,它们分别是:@Repository、@Service 和 @Controller。这 3 个注释和 @Component 是等效的。@Service用于标注业务层组件,业务层(Service )@Controller用于标注控制层组件(如struts中的action),控制层(action)@Re原创 2014-03-20 17:26:55 · 1286 阅读 · 0 评论