Skip to content

Commit a0e43b1

Browse files
quaffsnicoll
authored andcommitted
Add support for making MapAccessor read-only
See gh-33222
1 parent ec383f6 commit a0e43b1

File tree

2 files changed

+33
-2
lines changed

2 files changed

+33
-2
lines changed

spring-context/src/main/java/org/springframework/context/expression/MapAccessor.java

+22-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2021 the original author or authors.
2+
* Copyright 2002-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -33,10 +33,30 @@
3333
*
3434
* @author Juergen Hoeller
3535
* @author Andy Clement
36+
* @author Yanming Zhou
3637
* @since 3.0
3738
*/
3839
public class MapAccessor implements CompilablePropertyAccessor {
3940

41+
private final boolean allowWrite;
42+
43+
/**
44+
* Create a new map accessor for reading as well as writing.
45+
* @see #MapAccessor(boolean)
46+
*/
47+
public MapAccessor() {
48+
this(true);
49+
}
50+
51+
/**
52+
* Create a new map accessor for reading and possibly also writing.
53+
* @param allowWrite whether to allow write operations on a target instance
54+
* @see #canWrite
55+
*/
56+
public MapAccessor(boolean allowWrite) {
57+
this.allowWrite = allowWrite;
58+
}
59+
4060
@Override
4161
public Class<?>[] getSpecificTargetClasses() {
4262
return new Class<?>[] {Map.class};
@@ -60,7 +80,7 @@ public TypedValue read(EvaluationContext context, @Nullable Object target, Strin
6080

6181
@Override
6282
public boolean canWrite(EvaluationContext context, @Nullable Object target, String name) throws AccessException {
63-
return true;
83+
return this.allowWrite;
6484
}
6585

6686
@Override

spring-context/src/test/java/org/springframework/context/expression/MapAccessorTests.java

+11
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
* Tests for {@link MapAccessor}.
3333
*
3434
* @author Andy Clement
35+
* @author Yanming Zhou
3536
*/
3637
class MapAccessorTests {
3738

@@ -80,6 +81,16 @@ void mapAccessorCompilable() {
8081
assertThat(ex.getValue(sec,testMap)).isEqualTo("bar2");
8182
}
8283

84+
@Test
85+
void mapAccessorNotWritable() {
86+
Map<String, Object> testMap = getSimpleTestMap();
87+
StandardEvaluationContext sec = new StandardEvaluationContext();
88+
sec.addPropertyAccessor(new MapAccessor(false));
89+
SpelExpressionParser sep = new SpelExpressionParser();
90+
Expression ex = sep.parseExpression("foo");
91+
assertThat(ex.isWritable(sec, testMap)).isFalse();
92+
}
93+
8394
public static class MapGetter {
8495
Map<String,Object> map = new HashMap<>();
8596

0 commit comments

Comments
 (0)