Cześć
Mam problem z hibernate w Android Studio. Konkretnie jak to samo co w android studio robie w intelij to wszysko gra (tylko tam robię w maven), a tu mi się aplikacja wysypuje i nie mam pojęcia dlaczego. Czy ktoś może podpowiedzieć jak to ogarnęć.
Mam MainActivity
package com.bazadanychtest;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
SessionFactory sf = new Configuration().addAnnotatedClass(Book.class).buildSessionFactory(); //powinno mi w bazie dodać pustę tabelę na podstawie klasy Book ale tego nie robi tylko wywala aplikację
}
}
oraz klasę Book
package com.bazadanychtest;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
@Entity
public class Book {
@Id
@GeneratedValue
@Column
private int isbn;
@Column
private String title;
@Column
private String autor;
public void setIsbn(int isbn) {
this.isbn = isbn;
}
public void setTitle(String title) {
this.title = title;
}
public void setAutor(String autor) {
this.autor = autor;
}
public int getIsbn() {
return isbn;
}
public String getTitle() {
return title;
}
public String getAutor() {
return autor;
}
}
I zaimportowałem Hibernate i sterownik sql
plugins {
id 'com.android.application'
}
android {
compileSdk 33
defaultConfig {
applicationId "com.bazadanychtest"
minSdk 26
targetSdk 33
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
packagingOptions {
exclude 'META-INF/README'
exclude 'META-INF/INDEX.LIST'
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.8.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'org.hibernate:hibernate-core:5.6.11.Final'
implementation 'mysql:mysql-connector-java:8.0.28'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}
następnie dodałem plik hibernate.propertis (oczywiście gwiazdki są prawidłowo wypełnione :P)
hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
hibernate.hbm2ddl.auto=update
hibernate.connection.driver_class = com.mysql.jdbc.Driver
hibernate.connection.url = jdbc:mysql://********
hibernate.connection.username = *********
hibernate.connection.password = *********