admin管理员组文章数量:1352138
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?
本文标签: androidUsing Room Database with Dagger 2 and multimodule projectStack Overflow
版权声明:本文标题:android - Using Room Database with Dagger 2 and multi-module project - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743899404a2558393.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论