HI All,I was reading the release notes for 5.2.0 about the removal of the page pool and just wanted to clarify a threading issue:
Am I right in thinking this is not thread safe in a 5.2.x page/component: private String foo; public String getFoo(){ return foo; } public void setFoo(String foo){ this.foo = foo; } but it /is/ thread safe if I annotate it with the @Property instead: @Property private String foo; Thanks in advance! Jack