ObjectBox and Ktor
Is it possible to use ObjectBox in application with Ktor? I have the following build.gradle file:
buildscript {
// Consider moving these values to `gradle.properties`
ext.kotlin_version = '1.2.70'
ext.ktor_version = '0.9.4'
ext.appengine_version = '1.9.60'
ext.appengine_plugin_version = '1.3.4'
ext.objectbox_version = '2.1.0'
repositories {
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.cloud.tools:appengine-gradle-plugin:$appengine_plugin_version"
classpath "io.objectbox:objectbox-gradle-plugin:$objectbox_version"
}
}
apply plugin: 'kotlin'
apply plugin: 'war'
apply plugin: 'com.google.cloud.tools.appengine'
// to enable gradle in IntelliJ IDEA
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'kotlin-kapt'
apply plugin: 'io.objectbox'
sourceSets {
main.kotlin.srcDirs = [ 'src/main/kotlin' ]
}
repositories {
jcenter()
maven { url "https://kotlin.bintray.com/ktor" }
maven { url "https://dl.bintray.com/kotlin/exposed" }
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compile "io.ktor:ktor-server-servlet:$ktor_version"
compile "io.ktor:ktor-html-builder:$ktor_version"
compile "io.ktor:ktor-gson:$ktor_version"
compile "io.ktor:ktor-freemarker:$ktor_version"
compile 'org.jetbrains.exposed:exposed:0.8.5'
compile group: 'mysql', name: 'mysql-connector-java', version: '8.0.12'
providedCompile "com.google.appengine:appengine:$appengine_version"
}
kotlin.experimental.coroutines = 'enable'
task run(dependsOn: appengineRun)
And at first the project was running successfully. At that moment I had the model class:
class User()
But when I've added two annotation - @Entity
and @Id
from io.objectbox.annotation
package - to this class:
@Entity
class User(@Id val id: Long)
the error occured: java.lang.reflect.UndeclaredThrowableException
. And despite the error, ObjectBox'd generated the code with MyObjectBox
:
What the reason of this error? And I know that mostly ObjectBox is considered to be database for Mobile devices. So is it possible to use ObjectBox as database in application with Ktor at all?
objectbox ktor
add a comment |
Is it possible to use ObjectBox in application with Ktor? I have the following build.gradle file:
buildscript {
// Consider moving these values to `gradle.properties`
ext.kotlin_version = '1.2.70'
ext.ktor_version = '0.9.4'
ext.appengine_version = '1.9.60'
ext.appengine_plugin_version = '1.3.4'
ext.objectbox_version = '2.1.0'
repositories {
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.cloud.tools:appengine-gradle-plugin:$appengine_plugin_version"
classpath "io.objectbox:objectbox-gradle-plugin:$objectbox_version"
}
}
apply plugin: 'kotlin'
apply plugin: 'war'
apply plugin: 'com.google.cloud.tools.appengine'
// to enable gradle in IntelliJ IDEA
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'kotlin-kapt'
apply plugin: 'io.objectbox'
sourceSets {
main.kotlin.srcDirs = [ 'src/main/kotlin' ]
}
repositories {
jcenter()
maven { url "https://kotlin.bintray.com/ktor" }
maven { url "https://dl.bintray.com/kotlin/exposed" }
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compile "io.ktor:ktor-server-servlet:$ktor_version"
compile "io.ktor:ktor-html-builder:$ktor_version"
compile "io.ktor:ktor-gson:$ktor_version"
compile "io.ktor:ktor-freemarker:$ktor_version"
compile 'org.jetbrains.exposed:exposed:0.8.5'
compile group: 'mysql', name: 'mysql-connector-java', version: '8.0.12'
providedCompile "com.google.appengine:appengine:$appengine_version"
}
kotlin.experimental.coroutines = 'enable'
task run(dependsOn: appengineRun)
And at first the project was running successfully. At that moment I had the model class:
class User()
But when I've added two annotation - @Entity
and @Id
from io.objectbox.annotation
package - to this class:
@Entity
class User(@Id val id: Long)
the error occured: java.lang.reflect.UndeclaredThrowableException
. And despite the error, ObjectBox'd generated the code with MyObjectBox
:
What the reason of this error? And I know that mostly ObjectBox is considered to be database for Mobile devices. So is it possible to use ObjectBox as database in application with Ktor at all?
objectbox ktor
It may help others if you would post the enitre stack trace.
– Markus Junginger
Nov 14 '18 at 14:23
add a comment |
Is it possible to use ObjectBox in application with Ktor? I have the following build.gradle file:
buildscript {
// Consider moving these values to `gradle.properties`
ext.kotlin_version = '1.2.70'
ext.ktor_version = '0.9.4'
ext.appengine_version = '1.9.60'
ext.appengine_plugin_version = '1.3.4'
ext.objectbox_version = '2.1.0'
repositories {
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.cloud.tools:appengine-gradle-plugin:$appengine_plugin_version"
classpath "io.objectbox:objectbox-gradle-plugin:$objectbox_version"
}
}
apply plugin: 'kotlin'
apply plugin: 'war'
apply plugin: 'com.google.cloud.tools.appengine'
// to enable gradle in IntelliJ IDEA
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'kotlin-kapt'
apply plugin: 'io.objectbox'
sourceSets {
main.kotlin.srcDirs = [ 'src/main/kotlin' ]
}
repositories {
jcenter()
maven { url "https://kotlin.bintray.com/ktor" }
maven { url "https://dl.bintray.com/kotlin/exposed" }
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compile "io.ktor:ktor-server-servlet:$ktor_version"
compile "io.ktor:ktor-html-builder:$ktor_version"
compile "io.ktor:ktor-gson:$ktor_version"
compile "io.ktor:ktor-freemarker:$ktor_version"
compile 'org.jetbrains.exposed:exposed:0.8.5'
compile group: 'mysql', name: 'mysql-connector-java', version: '8.0.12'
providedCompile "com.google.appengine:appengine:$appengine_version"
}
kotlin.experimental.coroutines = 'enable'
task run(dependsOn: appengineRun)
And at first the project was running successfully. At that moment I had the model class:
class User()
But when I've added two annotation - @Entity
and @Id
from io.objectbox.annotation
package - to this class:
@Entity
class User(@Id val id: Long)
the error occured: java.lang.reflect.UndeclaredThrowableException
. And despite the error, ObjectBox'd generated the code with MyObjectBox
:
What the reason of this error? And I know that mostly ObjectBox is considered to be database for Mobile devices. So is it possible to use ObjectBox as database in application with Ktor at all?
objectbox ktor
Is it possible to use ObjectBox in application with Ktor? I have the following build.gradle file:
buildscript {
// Consider moving these values to `gradle.properties`
ext.kotlin_version = '1.2.70'
ext.ktor_version = '0.9.4'
ext.appengine_version = '1.9.60'
ext.appengine_plugin_version = '1.3.4'
ext.objectbox_version = '2.1.0'
repositories {
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.cloud.tools:appengine-gradle-plugin:$appengine_plugin_version"
classpath "io.objectbox:objectbox-gradle-plugin:$objectbox_version"
}
}
apply plugin: 'kotlin'
apply plugin: 'war'
apply plugin: 'com.google.cloud.tools.appengine'
// to enable gradle in IntelliJ IDEA
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'kotlin-kapt'
apply plugin: 'io.objectbox'
sourceSets {
main.kotlin.srcDirs = [ 'src/main/kotlin' ]
}
repositories {
jcenter()
maven { url "https://kotlin.bintray.com/ktor" }
maven { url "https://dl.bintray.com/kotlin/exposed" }
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compile "io.ktor:ktor-server-servlet:$ktor_version"
compile "io.ktor:ktor-html-builder:$ktor_version"
compile "io.ktor:ktor-gson:$ktor_version"
compile "io.ktor:ktor-freemarker:$ktor_version"
compile 'org.jetbrains.exposed:exposed:0.8.5'
compile group: 'mysql', name: 'mysql-connector-java', version: '8.0.12'
providedCompile "com.google.appengine:appengine:$appengine_version"
}
kotlin.experimental.coroutines = 'enable'
task run(dependsOn: appengineRun)
And at first the project was running successfully. At that moment I had the model class:
class User()
But when I've added two annotation - @Entity
and @Id
from io.objectbox.annotation
package - to this class:
@Entity
class User(@Id val id: Long)
the error occured: java.lang.reflect.UndeclaredThrowableException
. And despite the error, ObjectBox'd generated the code with MyObjectBox
:
What the reason of this error? And I know that mostly ObjectBox is considered to be database for Mobile devices. So is it possible to use ObjectBox as database in application with Ktor at all?
objectbox ktor
objectbox ktor
edited Nov 14 '18 at 11:45
Ksenia
asked Nov 13 '18 at 20:05
KseniaKsenia
7111029
7111029
It may help others if you would post the enitre stack trace.
– Markus Junginger
Nov 14 '18 at 14:23
add a comment |
It may help others if you would post the enitre stack trace.
– Markus Junginger
Nov 14 '18 at 14:23
It may help others if you would post the enitre stack trace.
– Markus Junginger
Nov 14 '18 at 14:23
It may help others if you would post the enitre stack trace.
– Markus Junginger
Nov 14 '18 at 14:23
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53288684%2fobjectbox-and-ktor%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53288684%2fobjectbox-and-ktor%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
It may help others if you would post the enitre stack trace.
– Markus Junginger
Nov 14 '18 at 14:23