最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

android - Using Room Database with Dagger 2 and multi-module project - Stack Overflow

programmeradmin4浏览0评论

I have the following project structure:

app/
    di/
        components/
        modules   
    JakcApplication.kt
    MainActivity.kt    
core/
    data/
        local/
            database/
                models/
                    ProjectEntity.kt
                    PartEntity.kt
                    CounterEntity.kt
                AppDatabase.kt
        remote/
feature/
    addproject/
        data/
        di/
        page/
        screen/
        viewmodel/
    home/
        data/
        di/
        page/
        screen
        viewmodel/

As you can see, this is how I figure clean architecture should look and I'm guessing specifically package by feature (however, please correct me if I'm wrong).

Now, ideally, I'd like to keep the features self-contained. However, what I've noticed is that the typical way of using Room is you would have the following:

@Database(
    // ...
)
abstract class AppDatabase: RoomDatabase() {
    abstract val projectDao: ProjectDao

    companion object {
        // ...
        
        fun getDatabase(context: Context): AppDatabase {
            // ...
        }
    }
}

Now, I'm also wanting to use Dagger 2 as my dependency injection. I also know that typically, in order to use Room, it needs to know each dao at runtime. However, the way it would be typically set up would create a circular dependency:

Core would depend on each feature to get sight of the dao, and each feature would depend on Core in order to get sight of the app database.

Is there a way to define each dao within each feature:

feature/
    addproject/
        data/
            local/
                database/
                    dao/
                        ProjectDao.kt
                        PartDao.kt
                        CounterDao.kt

And then somehow inject the dao's into AppDatabase, or alternatively register them?

发布评论

评论列表(0)

  1. 暂无评论