Browse Source
This commit infers the reflection hints required for converters when they are specified with the @Convert annotation at class or field level. It also refines the hints generated for @Converter in order to just generate the construct hint, not the public method one which should be not needed. Closes gh-29771pull/29780/head
Sébastien Deleuze
2 years ago
7 changed files with 183 additions and 6 deletions
@ -0,0 +1,29 @@
@@ -0,0 +1,29 @@
|
||||
/* |
||||
* Copyright 2002-2023 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.orm.jpa.domain; |
||||
|
||||
public class EmployeeCategory { |
||||
private String name; |
||||
|
||||
public String getName() { |
||||
return name; |
||||
} |
||||
|
||||
public void setName(String name) { |
||||
this.name = name; |
||||
} |
||||
} |
@ -0,0 +1,40 @@
@@ -0,0 +1,40 @@
|
||||
/* |
||||
* Copyright 2002-2023 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.orm.jpa.domain; |
||||
|
||||
import jakarta.persistence.AttributeConverter; |
||||
|
||||
public class EmployeeCategoryConverter implements AttributeConverter<EmployeeCategory, String> { |
||||
|
||||
@Override |
||||
public String convertToDatabaseColumn(EmployeeCategory employeeCategory) { |
||||
if (employeeCategory != null) { |
||||
return employeeCategory.getName(); |
||||
} |
||||
return null; |
||||
} |
||||
|
||||
@Override |
||||
public EmployeeCategory convertToEntityAttribute(String data) { |
||||
if (data != null) { |
||||
EmployeeCategory employeeCategory = new EmployeeCategory(); |
||||
employeeCategory.setName(data); |
||||
return employeeCategory; |
||||
} |
||||
return null; |
||||
} |
||||
} |
@ -0,0 +1,29 @@
@@ -0,0 +1,29 @@
|
||||
/* |
||||
* Copyright 2002-2023 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.orm.jpa.domain; |
||||
|
||||
public class EmployeeKind { |
||||
private String name; |
||||
|
||||
public String getName() { |
||||
return name; |
||||
} |
||||
|
||||
public void setName(String name) { |
||||
this.name = name; |
||||
} |
||||
} |
@ -0,0 +1,40 @@
@@ -0,0 +1,40 @@
|
||||
/* |
||||
* Copyright 2002-2023 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.orm.jpa.domain; |
||||
|
||||
import jakarta.persistence.AttributeConverter; |
||||
|
||||
public class EmployeeKindConverter implements AttributeConverter<EmployeeKind, String> { |
||||
|
||||
@Override |
||||
public String convertToDatabaseColumn(EmployeeKind employeeKind) { |
||||
if (employeeKind != null) { |
||||
return employeeKind.getName(); |
||||
} |
||||
return null; |
||||
} |
||||
|
||||
@Override |
||||
public EmployeeKind convertToEntityAttribute(String data) { |
||||
if (data != null) { |
||||
EmployeeKind employeeKind = new EmployeeKind(); |
||||
employeeKind.setName(data); |
||||
return employeeKind; |
||||
} |
||||
return null; |
||||
} |
||||
} |
Loading…
Reference in new issue