@RunWith
(
SpringJUnit4ClassRunner
.
class
)
@ContextConfiguration
(
locations
=
{
"classpath*:/applicationContext-test.xml"
})
public class
RedisStringTest
extends
UnitilsJUnit4
{
@Autowired
private
RedisTemplate
<
String
,
Object
>
redisTemplate
;
@Resource
(
name
=
"redisTemplate"
)
private
ValueOperations
<
String
,
String
>
opsForValue
;
/**
* String
类型的
CRUD,
重复
set
为修改操作
,
以及批量添加和删除
,
查找
,
设置生存时间
,
以及
value
的增减
;
*/
@Test
public void
test
() {
String
key1
=
"test_name:"
+
1
;
opsForValue
.
set
(
key1
,
"