spring4.x

spring4.x hibernate4.x 整合 ehcache 注解 annotate

让人想犯罪 __ 提交于 2019-12-03 20:24:39
废话不说 直接贴源码链接 : https://git.oschina.net/alexgaoyh/alexgaoyh.git 使用 ehcache 来提高系统的性能,现在用的非常多, 也支持分布式的缓存,在 hibernate 当中作为二级缓存的实现产品,可以提高查询性能。 pom.xml <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-ehcache</artifactId> <version>4.1.6.Final</version> </dependency> 在项目的 src 下面添加 ehcache 的配置文件 ehcache.xml <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../config/ehcache.xsd"> <!-- Subdirectories can be specified below the property e.g. java.io.tmpdir/one --> <diskStore path="java.io.tmpdir"/> <!-- Mandatory Default Cache configuration.

解决spring4.x中的MappingJacksonHttpMessageConverter错误

醉酒当歌 提交于 2019-12-01 22:12:23
在spring4.x中使用了org.springframework.http.converter.json. MappingJackson 2 HttpMessageConverter 代替旧的 MappingJacksonHttpMessageConverter 。 并将maven依赖改成如下: <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.5.1</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.5.1</version> </dependency> 我们用7-zip去查看spring-web-[version].jar,确实已找不到MappingJacksonHttpMessageConverter这个class了。 来源: oschina 链接: https://my.oschina.net/u/1025909/blog/389470