64 changed files with 145 additions and 144 deletions
@ -0,0 +1,7 @@ |
|||
package org.thingsboard.server.dao.annotation; |
|||
|
|||
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; |
|||
|
|||
@ConditionalOnProperty(prefix = "cassandra", value = "enabled", havingValue = "true") |
|||
public @interface NoSqlDao { |
|||
} |
|||
@ -0,0 +1,7 @@ |
|||
package org.thingsboard.server.dao.annotation; |
|||
|
|||
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; |
|||
|
|||
@ConditionalOnProperty(prefix = "sql", value = "enabled", havingValue = "true") |
|||
public @interface SqlDao { |
|||
} |
|||
Loading…
Reference in new issue