File tree Expand file tree Collapse file tree 2 files changed +8
-10
lines changed
src/test/java/org/apache/ibatis/submitted Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 1515 */
1616package org .apache .ibatis .submitted .cache ;
1717
18- import org .apache .ibatis .annotations .*;
19- import org .apache .ibatis .annotations .Options .FlushCachePolicy ;
20-
21- import java .util .List ;
18+ import org .apache .ibatis .annotations .CacheNamespace ;
19+ import org .apache .ibatis .annotations .Property ;
2220
2321@ CacheNamespace (implementation = CustomCache .class , properties = {
24- @ Property (name = "stringValue" , value = "bar" )
25- , @ Property (name = "integerValue" , value = "99" )
26- , @ Property (name = "longValue" , value = "9999" )
22+ @ Property (name = "stringValue" , value = "bar" ),
23+ @ Property (name = "integerValue" , value = "99" ),
24+ @ Property (name = "longValue" , value = "9999" )
2725})
2826public interface CustomCacheMapper {
2927}
Original file line number Diff line number Diff line change 2020import org .apache .ibatis .annotations .Select ;
2121
2222@ CacheNamespace (implementation = CustomCache .class , properties = {
23- @ Property (name = "stringValue" , value = "${stringProperty}" )
24- , @ Property (name = "integerValue" , value = "${integerProperty}" )
25- , @ Property (name = "longValue" , value = "${longProperty}" )
23+ @ Property (name = "stringValue" , value = "${stringProperty}" ),
24+ @ Property (name = "integerValue" , value = "${integerProperty}" ),
25+ @ Property (name = "longValue" , value = "${longProperty}" )
2626})
2727public interface AnnotationMapper {
2828
You can’t perform that action at this time.
0 commit comments