自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 收藏
  • 关注

原创 实体类滤空更新(JPQL拼接)

public class JpaTemplate { @PersistenceContext private EntityManager entityManager; @Transactional public void update(Object obj) throws IllegalAccessException, NoSuchFieldException { Cla

2017-08-21 11:28:54 415

原创 解决跨域请求的filter

@Componentpublic class SimpleCORSFilter implements Filter { private final RedisTemplate redisTemplate; private final String key = "cors:prep:medical"; @Autowired public SimpleCORSFilter(Redi

2017-08-19 10:26:21 1731

原创 数据库读写分离的简单思路

数据库读写分离的简单思路spring+mybatis1.双数据源,读写mapper分两个包各个扫描2.MySql原生读写分离,配置ReplicationDriver,会自动选择master和slave,一般同步使用binlog,只需要readonly=true就会走slave,要开事务3.AbstractRoutingDataSource 配合 AOP注入数据源以后再补充详细的

2017-08-17 11:11:19 541

转载 欢迎使用CSDN-markdown编辑器

# CAP定理>在计算机科学中, CAP定理(CAP theorem), 又被称作 布鲁尔定理(Brewer's theorem), 它指出对于一个分布式计算系统来说,不可能同时满足以下三点:一致性(Consistency) (所有节点在同一时间具有相同的数据)可用性(Availability) (保证每个请求不管成功或者失败都有响应)分隔容忍(Partition tolerance) (系统中任意信息的丢失

2017-08-09 14:31:55 179

转载 oracle返回中文拼音首字母方法

CREATE OR REPLACE FUNCTION F_GET_PY(P_NAME IN VARCHAR2) RETURN VARCHAR2 ASV_COMPARE VARCHAR2(100);V_RETURN VARCHAR2(4000);--UTF8 编码FUNCTION F_NLSSORT(P_WORD IN VARCHAR2) RETURN VARCHAR2 ASBE

2017-07-26 11:27:25 738

原创 更新非空字段工具

public T> void update(T src,T dest){ Field[] srcFields = src.getClass().getDeclaredFields(); for(int i = 0 ; ilength ; i++){ srcFields[i].setAccessible(true); try {

2017-07-25 15:51:39 272

转载 解决Springboot中Interceptor拦截器中依赖注入失败

I want to add spring mvc interceptor as part of Java config. I already have a xml based config for this but I am trying to move to a Java config. For interceptors, I know that it can be done like this

2017-07-20 09:14:47 4165

原创 Spring 包扫描

这是入口public class BeanScannerConfigurer implements BeanFactoryPostProcessor, ApplicationListener { private Scanner scanner; public void postProcessBeanFactory(ConfigurableListableBeanFacto

2017-07-19 10:48:39 388

原创 springboot初始化bean扫描

这里主要是扫描自定义注解public class AnnotationScan implements ApplicationListener{ @Autowired RedisTemplate redisTemplate; private final static Logger logger = LoggerFactory.getLogger(Annotation

2017-07-18 14:52:18 4621

原创 简单的春鞋!

微服务:Springcloud—springBoot 课程内容1,helloworld1.application.yml配置2.Application.java springapplication.run(application.class)开启3.@springbootapplication入口  @RestController =@responsebod

2017-07-16 10:01:03 257

空空如也

空空如也

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

TA关注的人

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