Browse Source
We now evaluate @Value annotations in persistence constructors to compute values when creating object instances. AtValue can be used to materialize values for e.g. transient properties. Root properties map to the ResultSet from which an object gets materialized. class WithAtValue { private final @Id Long id; private final @Transient String computed; public WithAtValue(Long id, @Value("#root.first_name") String computed) { // obtain value from first_name column this.id = id; this.computed = computed; } }pull/247/head
4 changed files with 198 additions and 12 deletions
@ -0,0 +1,89 @@
@@ -0,0 +1,89 @@
|
||||
/* |
||||
* Copyright 2020 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
package org.springframework.data.jdbc.core.convert; |
||||
|
||||
import org.springframework.expression.EvaluationContext; |
||||
import org.springframework.expression.PropertyAccessor; |
||||
import org.springframework.expression.TypedValue; |
||||
import org.springframework.lang.Nullable; |
||||
|
||||
/** |
||||
* {@link PropertyAccessor} to access a column from a {@link ResultSetAccessor}. |
||||
* |
||||
* @author Mark Paluch |
||||
* @since 2.1 |
||||
*/ |
||||
class ResultSetAccessorPropertyAccessor implements PropertyAccessor { |
||||
|
||||
static final PropertyAccessor INSTANCE = new ResultSetAccessorPropertyAccessor(); |
||||
|
||||
/* |
||||
* (non-Javadoc) |
||||
* @see org.springframework.expression.PropertyAccessor#getSpecificTargetClasses() |
||||
*/ |
||||
@Override |
||||
public Class<?>[] getSpecificTargetClasses() { |
||||
return new Class<?>[] { ResultSetAccessor.class }; |
||||
} |
||||
|
||||
/* |
||||
* (non-Javadoc) |
||||
* @see org.springframework.expression.PropertyAccessor#canRead(org.springframework.expression.EvaluationContext, java.lang.Object, java.lang.String) |
||||
*/ |
||||
@Override |
||||
public boolean canRead(EvaluationContext context, @Nullable Object target, String name) { |
||||
return target instanceof ResultSetAccessor && ((ResultSetAccessor) target).hasValue(name); |
||||
} |
||||
|
||||
/* |
||||
* (non-Javadoc) |
||||
* @see org.springframework.expression.PropertyAccessor#read(org.springframework.expression.EvaluationContext, java.lang.Object, java.lang.String) |
||||
*/ |
||||
@Override |
||||
public TypedValue read(EvaluationContext context, @Nullable Object target, String name) { |
||||
|
||||
if (target == null) { |
||||
return TypedValue.NULL; |
||||
} |
||||
|
||||
Object value = ((ResultSetAccessor) target).getObject(name); |
||||
|
||||
if (value == null) { |
||||
return TypedValue.NULL; |
||||
} |
||||
|
||||
return new TypedValue(value); |
||||
} |
||||
|
||||
/* |
||||
* (non-Javadoc) |
||||
* @see org.springframework.expression.PropertyAccessor#canWrite(org.springframework.expression.EvaluationContext, java.lang.Object, java.lang.String) |
||||
*/ |
||||
@Override |
||||
public boolean canWrite(EvaluationContext context, @Nullable Object target, String name) { |
||||
return false; |
||||
} |
||||
|
||||
/* |
||||
* (non-Javadoc) |
||||
* @see org.springframework.expression.PropertyAccessor#write(org.springframework.expression.EvaluationContext, java.lang.Object, java.lang.String, java.lang.Object) |
||||
*/ |
||||
@Override |
||||
public void write(EvaluationContext context, @Nullable Object target, String name, @Nullable Object newValue) { |
||||
throw new UnsupportedOperationException(); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue