Giter VIP home page Giter VIP logo

Comments (6)

 avatar commented on June 4, 2024 2

Temporary fix:

@Configuration
class DatabaseConfiguration() {

    @Bean
    fun exposedAutoConfiguration(applicationContext: ApplicationContext) =
        ExposedAutoConfiguration(applicationContext)

    @Bean
    fun springTransactionManager(exposedAutoConfiguration: ExposedAutoConfiguration, datasource: DataSource, databaseConfig: DatabaseConfig) =
        exposedAutoConfiguration.springTransactionManager(datasource, databaseConfig)

    @Bean
    fun databaseConfig(exposedAutoConfiguration: ExposedAutoConfiguration, ) =
        exposedAutoConfiguration.databaseConfig()
}

from exposed.

joshlong avatar joshlong commented on June 4, 2024 1

Yah - please make this change. You could probably just get away with leaving it as Spring Boot 2.x and adding a text file META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports and then placing the name of the autoconfiguration class on the first line. It would still be nice if you took it a bit further and provided an integration for GraalVM native images, as per this issue from 2021. Thanks again for your amazing project!

from exposed.

PoisonedYouth avatar PoisonedYouth commented on June 4, 2024

It is not only the way of registering autoconfiguration file that changed, also the java baseline is 17 now.

from exposed.

PoisonedYouth avatar PoisonedYouth commented on June 4, 2024

Yah - please make this change. You could probably just get away with leaving it as Spring Boot 2.x and adding a text file META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports and then placing the name of the autoconfiguration class on the first line. It would still be nice if you took it a bit further and provided an integration for GraalVM native images, as per this issue from 2021. Thanks again for your amazing project!

Josh is everywhere 😂

from exposed.

PoisonedYouth avatar PoisonedYouth commented on June 4, 2024

I could fix it with adding org.springframework.boot.autoconfigure.AutoConfiguration.imports file to the resources with following content:
org.jetbrains.exposed.spring.autoconfigure.ExposedAutoConfiguration

and also creating a custom configuration which excludes the necessary AutoConfigurations:

@Configuration
@EnableAutoConfiguration(
    exclude = [
        DataSourceTransactionManagerAutoConfiguration::class,
        JdbcRepositoriesAutoConfiguration::class,
    ],
)
class ExposedConfiguration

from exposed.

Mohamadhassan98 avatar Mohamadhassan98 commented on June 4, 2024

Temporary fix:

@Configuration
class DatabaseConfiguration() {

    @Bean
    fun exposedAutoConfiguration(applicationContext: ApplicationContext) =
        ExposedAutoConfiguration(applicationContext)

    @Bean
    fun springTransactionManager(exposedAutoConfiguration: ExposedAutoConfiguration, datasource: DataSource, databaseConfig: DatabaseConfig) =
        exposedAutoConfiguration.springTransactionManager(datasource, databaseConfig)

    @Bean
    fun databaseConfig(exposedAutoConfiguration: ExposedAutoConfiguration, ) =
        exposedAutoConfiguration.databaseConfig()
}

Anyone facing this error for the suggested workaround?
Cannot access class 'org.jetbrains.exposed.spring.SpringTransactionManager'. Check your module classpath for missing or conflicting dependencies
I'm new to spring and can't make it working inside RestController, getting No transaction in context exception.

Trying to fix with suggested workaround raises this error.

Any suggestions?

from exposed.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.