io.micronaut.data.hibernate.naming.PhysicalNamingStrategyConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-data-hibernate-jpa Show documentation
Show all versions of micronaut-data-hibernate-jpa Show documentation
Data Repository Support for Micronaut
The newest version!
/*
* Copyright 2017-2020 original 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 io.micronaut.data.hibernate.naming;
import io.micronaut.configuration.hibernate.jpa.JpaConfiguration;
import io.micronaut.context.event.BeanCreatedEvent;
import io.micronaut.context.event.BeanCreatedEventListener;
import io.micronaut.core.annotation.Internal;
import org.hibernate.boot.model.naming.PhysicalNamingStrategy;
import org.hibernate.cfg.AvailableSettings;
import jakarta.inject.Singleton;
import java.util.Map;
import java.util.Objects;
/**
* Applies the configured {@link PhysicalNamingStrategy}.
*
* @author graemerocher
* @since 1.0.0
*/
@Internal
@Singleton
class PhysicalNamingStrategyConfiguration implements BeanCreatedEventListener {
private final PhysicalNamingStrategy physicalNamingStrategy;
/**
* Default constructor.
* @param physicalNamingStrategy The naming strategy
*/
public PhysicalNamingStrategyConfiguration(PhysicalNamingStrategy physicalNamingStrategy) {
Objects.requireNonNull(physicalNamingStrategy, "PhysicalNamingStrategy cannot be null");
this.physicalNamingStrategy = physicalNamingStrategy;
}
@Override
public JpaConfiguration onCreated(BeanCreatedEvent event) {
JpaConfiguration jpaConfiguration = event.getBean();
Map jpaProperties = jpaConfiguration.getProperties();
jpaProperties.putIfAbsent(
AvailableSettings.PHYSICAL_NAMING_STRATEGY, physicalNamingStrategy
);
if (jpaProperties.get(AvailableSettings.PHYSICAL_NAMING_STRATEGY) instanceof DefaultPhysicalNamingStrategy) {
jpaProperties.putIfAbsent(
AvailableSettings.ID_DB_STRUCTURE_NAMING_STRATEGY, "legacy"
);
}
return jpaConfiguration;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy