
Spring
-droidcoffee-
这个作者很懒,什么都没留下…
展开
-
Spring 项目的初始化工作总结
1、使用监听器在tomcat启动的时候执行public class ApplicationContextInitializer implements ServletContextListener { private Logger logger = LoggerFactory.getLogger(ApplicationContextInitializer.class); @Overr原创 2017-05-20 12:06:21 · 601 阅读 · 0 评论 -
spring Scheduled 执行两次
项目中 job是用注解配置的package com.xxx.xxx@Component@Lazy(false) // 不加注解会导致不运行public class BangListJob { private Logger logger = LoggerFactory.getLogger(getClass()); /** * 把超过俩周的变成已取走-超时 * 每周一上原创 2017-09-18 16:35:28 · 5363 阅读 · 2 评论 -
Spring多数据源导致配置失效
如果在springApplication.xml中配置的, 那么expression配置的相关的 包,必须在springmvc.xml中被扫描到如果不配置的话 会导致失败原创 2017-09-20 16:23:23 · 1305 阅读 · 0 评论 -
Spring RMI java.rmi.NoSuchObjectException: no such object in table
如果远程服务器被重启了以后、client一端也需要重新启动否则会报错org.springframework.remoting.RemoteConnectFailureException: Could not connect to remote service [rmi://127.0.0.1:1099/rmiService2]; nested exception is java.rmi.N原创 2017-12-10 18:11:14 · 2009 阅读 · 0 评论 -
Spring事务传播机制-REQUIRES_NEW
@Transactional 如果加在class上,则默认没个方法都会有起作用、也就是说每个方法都会开启一个事务,包括查询 所以尽量不要加在class上先看第一个propagation REQUIRES_NEW的用法/** * REQUIRES_NEW 如果该方法update已经开启了老事务,则新事务会被挂起,直到老事务执行完成以后才执行新的事务<br/> * 注意: 并不是原创 2017-12-23 18:39:23 · 638 阅读 · 0 评论 -
Spring传播机制-Propagation.REQUIRED
看网上大部分说法都是“如果存在一个事务,则支持当前事务。如果没有事务则开启” 真是一脸懵逼。。。 最开始我的理解是,如果调用save方法,执行到userMapper.save的时候会开启一个事务,这时候如果该事务未结束,又来请求 会导致第二次调用save不会开启新的事务 然后我测试 http://localhost:9082/coffee.controller/update?phone=1原创 2017-12-23 22:38:59 · 2200 阅读 · 1 评论 -
spring事务传播机制-REQUIRED嵌套REQUIRED
直接上代码 /** * <pre> * 分两种情况 1、事务不嵌套 每次执行方法save的时候都会开启一个新的事务 * 2、事务嵌套 外层事务如果开启,内层事务会加入到外层事务中,此时如果 外层事务回滚,则内层事务会一同回滚, * 如果内层事务回滚、外层事务也会一同回滚。。。。因为他俩就是同一个事务啊 * </pre> */原创 2017-12-24 00:02:30 · 2555 阅读 · 0 评论 -
spring事务传播机制-REQUIRED嵌套REQUIRES_NEW
如果在同一个事务中, 内层REQUIRES_NEW并不会开启新的事务/** @Transactional(propagation = Propagation.REQUIRED) @Override public void save(UserRecord userParam) { logger.info("开始执行 save {}, {}", userParam原创 2017-12-24 10:14:20 · 15240 阅读 · 3 评论 -
spring事务传播机制-REQUIRED嵌套NESTED
1:在同一个service中嵌套, 如果已经存在外层事务,则nested不会开启新的事务,否则会开启 nested的savepoint是不起作用的, 内层事务回滚会导致整个事务一同回滚 2:在不同的service中嵌套,如果已经存在外层事务,则nested同样不会开启新的事务,否则会开启 但是nested的savepoint是起作用的,即:内层事务回滚 只会影响内层事务,不会导致外层事务一同原创 2017-12-24 11:31:23 · 5590 阅读 · 0 评论 -
spring aop Pointcut execution规则
任意公共方法的执行:execution(public * *(..))##public可以省略, 第一个* 代表方法的任意返回值 第二个参数代表任意包+类+方法 (..)任意参数任何一个以“set”开始的方法的执行:execution(* set*(..))UserService接口的任意方法:execution(* com.coffee.service.UserService.*原创 2018-01-25 16:34:03 · 10305 阅读 · 1 评论 -
Can not construct instance of java.util.LinkedHashMap: no String-argument constructor/factory method
出现这个问题是由于 参数传入的是一个String类型 无法转换为Map$.ajax({ type:'POST', url:hostUrl, dataType:'json', contentType:'application/json', async:fa...原创 2018-02-09 11:15:11 · 23796 阅读 · 0 评论 -
java.util.zip.ZipException: invalid LOC header
这个问题网上一搜一大堆 都说jar有问题问题是怎么找出有问题的jar 我这里记录一下我的解决办法 maven install的时候 仔细看log 会提示有问题jar 按照路径删掉jar 以后 重新install[WARNING] 读取C:\Users\coffee\.m2\repository\com\github\fernandospr\javapns-jdk16\2.3.1\j...原创 2018-02-10 11:39:06 · 1222 阅读 · 0 评论 -
spring bean 动态创建、核心类ApplicationContext 、AutowireCapableBeanFactory
public class SpringBeanUtil implements ApplicationContextAware { @Autowired private static ApplicationContext context = null; private Bean1 bean1; private Bean2 bean2; public vo...原创 2018-01-30 14:31:33 · 1043 阅读 · 0 评论 -
spring aop的两种使用方式
@Aspect// @Order(-1) // 保证切换数据源在@Transactional之前执行 ,因为实现了Ordered 接口, 所以可以不需要注解@Componentpublic class DataSourceAdvice implements MethodBeforeAdvice, AfterReturningAdvice, ThrowsAdvice, Ordered { ...原创 2018-03-02 15:41:22 · 754 阅读 · 0 评论 -
Value '' can not be represented as java.sql.Timestamp
org.springframework.dao.TransientDataAccessResourceException: Error attempting to get column 'update_date' from result set. Cause: java.sql.SQLException: Value '' can not be represented as java.sql.T...原创 2018-04-26 15:16:18 · 2633 阅读 · 0 评论 -
spring 自带的定时任务
官网文档 http://spring.io/guides/gs/scheduling-tasks/项目中使用注解配置的, 需要加一个EnableScheduling注解@Configuration@EnableSchedulingpublic class WebMvcConfiguration extends WebMvcConfigurationSupport {te原创 2017-04-27 18:11:37 · 859 阅读 · 0 评论 -
spring 注入static 字段 @value
@Componentpublic class Configure { // appid private static String appId = "wxbexxxxxxx";// // @Value("${wx.app.id}") @Value("#{configProperties['wx.app.id']}") public void setAppId(String app原创 2017-05-16 14:52:22 · 15658 阅读 · 1 评论 -
logback
%d{yyyy-MM-dd HH:mm:ss} %-5level %logger{36} - %msg%n logs/consoleFile.log logs/consoleFile_%d{yyyy-MM-dd}.log %date{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logg原创 2017-03-04 10:25:02 · 508 阅读 · 0 评论 -
BeanDefinitionParsingException: Configuration problem: Unable to locate Spring NamespaceHandler
转自。。。。。。。BeanDefinitionParsingException: Configuration problem: Unable to locate Spring NamespaceHandler2009-05-14 09:28出现这个问题是因为我的spring3.0里的包是单独引用的,缺少了别的包譬如Configuration problem:转载 2010-05-08 16:51:00 · 8624 阅读 · 0 评论 -
spring 事务管理下的 hibernate 持久化实例操作的几点问题【查询/更新】
<br />在 一个 method 中 进行如下操作<br /> <br /> Query query = this.getSession().createQuery(hql); ls = query.list(); TestBean oo = (TestBean) ls.get(0); oo.setUsername("1111");<br /> <br /> <br />由于hibernate 事务 交给了hibernate 所以:<br /> <br />原创 2010-06-09 10:15:00 · 1590 阅读 · 0 评论 -
spring3.0 之 ajax 使用
<br />添加对JSON的支持 <br /><bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"> <property name="messageConverters"> <list> <ref bean="mappingJacksonHttpMessageConverter" /> </list> </property> </bean原创 2011-01-25 00:35:00 · 3208 阅读 · 0 评论 -
spring3.x 整合 servlet3.0 之异步调
首先需要定义一个拦截异步请求的Filter, 该Filter需要设置asyncSupported=true以启动对servlet异步的支持 package org.async.filter;import java.io.IOException;impor原创 2011-02-12 02:17:00 · 10667 阅读 · 4 评论 -
spring3.0 文件上传
public class MultiPartFileBean { private List files; public void setFiles(List files) { this.files = files; } public List getFiles() { return files; }}原创 2011-02-28 11:01:00 · 3029 阅读 · 1 评论 -
用intellig IDEA开发 Spring MVC第一篇
五年没搞后台了,今天重温一下, 工具也换了 不用eclipse了按照工程创建的向导 新建一个工程 spring mvc创建完成以后的目录结构有问题, 把lib放到 WEB-INF目录下就可以了先看一下 web.xml<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:x原创 2016-11-06 17:21:26 · 1334 阅读 · 0 评论 -
Spring mvc 从一个http请求分析DispatcherServlet的工作过程
开发工具 Intellij IDEA 目标、调试 请求http://localhost:8080/coffee/helloworld dispatcher org.springframework.web.servlet.DispatcherServlet contextConfigLocation原创 2016-11-09 23:54:17 · 2348 阅读 · 0 评论 -
cvc-complex-type.2.1: Element 'mvc:annotation-driven' must have no character or element information
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springf原创 2016-12-24 18:03:08 · 3877 阅读 · 1 评论 -
Spring mvc:annotation-driven
如果在spring-mvc。xml文件中配置了mvc:annotation-driven 那么服务器启动的时候会创建一个RequestMappingHandlerAdapter对象RequestResponseBodyMethodProcessor@Configurationpublic class WebMvcConfiguration extends WebMvcCo原创 2017-02-12 13:06:34 · 779 阅读 · 0 评论 -
Springboot 动态刷新的几点注意
1、bootstrap.yml中的配置属性 无法动态刷新 只能添加在application.yml中 2、需要在调用的地方添加@RefreshScope、不能只在Application上添加 3 、需要引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <a...原创 2018-05-07 14:10:52 · 8086 阅读 · 0 评论