- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
最近我开始了一个安卓应用项目。我需要尽可能结构化地管理数据。
所以我选择了 Realm 并对其进行了一些修改。
但是我遇到了一些错误。但是我不知道为什么会出现这个错误。
错误是
不允许嵌套事务。在每个 beginTransaction() 之后使用 commitTransaction()。
我的代码在下面。
public class CuratorApplication extends Application {
private Realm realm;
@Override
public void onCreate() {
super.onCreate();
Log.e("debug", "Application class create!!");
configureRealmDatabase(this);
}
private void configureRealmDatabase(Context context){
RealmConfiguration config = new RealmConfiguration.Builder(context)
.name("curator.realm")
.build();
Realm.setDefaultConfiguration(config);
}
}
我按照 here 中的描述在 Application 类中注册 Realm
我尝试在 Activity 中进行交易。但它显示错误。 :(
package com.nolgong.curator.screen;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import com.nolgong.curator.R;
import com.nolgong.curator.model.retrofit.Game;
import com.nolgong.curator.model.retrofit.GameInformation;
import com.nolgong.curator.model.retrofit.Team;
import com.nolgong.curator.network.NetworkClient;
import java.io.IOException;
import java.util.Properties;
import io.realm.Realm;
import io.realm.exceptions.RealmPrimaryKeyConstraintException;
import retrofit2.Call;
import retrofit2.Callback;
import retrofit2.Response;
public class IntroActivity extends AppCompatActivity {
private Button confirmBtn;
private EditText confirmText;
private Realm realm;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_intro);
setUp();
registerListener();
}
private String getProperty() throws IOException{
Properties properties = new Properties();
properties.load(getResources().openRawResource(R.raw.config));
String property = properties.getProperty("serverAddress");
Log.e("debug", "Property : " + property);
return property;
}
private void setNetworkClient(String serverAddress){
Log.e("debug", "Address : " + serverAddress);
NetworkClient.getInstance(serverAddress);
}
private void setUp(){
try {
setNetworkClient(getProperty());
} catch (IOException e){
Log.e("debug", "set network" + e);
}
confirmBtn = (Button)findViewById(R.id.intro_confirm);
confirmText = (EditText)findViewById(R.id.intro_input);
realm = Realm.getDefaultInstance();
Log.e("debug", "transaction state : " + realm.isInTransaction());
Log.e("debug", "CONFIGURATION : \n" + realm.getConfiguration());
}
private void registerListener(){
confirmBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String teamId = confirmText.getText().toString();
Integer digit = Integer.valueOf(teamId);
Log.e("debug", digit + "");
NetworkClient.getInstance().login(digit, new Callback<GameInformation>() {
@Override
public void onResponse(Call<GameInformation> call, Response<GameInformation> response) {
int responseCode = response.code();
switch (responseCode){
case 200:
GameInformation gameInformation = response.body();
Log.e("debug", "game information " + gameInformation.toString());
Game game = gameInformation.getGame();
Team team = gameInformation.getTeam();
updateGameToRealm(game);
updateTeamToRealm(team);
break;
default:
Log.e("debug", "Maybe something happened.");
break;
}
}
@Override
public void onFailure(Call<GameInformation> call, Throwable t) {
Log.e("debug", "Login fail :" + t.toString());
}
});
}
});
}
private void updateGameToRealm(Game game){
com.nolgong.curator.model.database.Game rGame = new com.nolgong.
curator.model.database.Game(game.getId(), game.getDate(),
game.getSession(), game.getRunningTime());
realm.beginTransaction();
try {
realm.copyToRealm(rGame);
} catch (RealmPrimaryKeyConstraintException e){
Log.e("debug", e.toString());
realm.cancelTransaction();
} finally {
realm.commitTransaction();
}
}
private void updateTeamToRealm(Team team){
com.nolgong.curator.model.database.Team rTeam = new com.nolgong.
curator.model.database.Team(team.getId(), team.getMembers(),
team.getGameId(), team.isClientDataSynced(),
team.getJob(), team.getDigit(),
team.getPoint());
realm.beginTransaction();
try {
realm.copyToRealm(rTeam);
} catch (RealmPrimaryKeyConstraintException e){
Log.e("debug", e.toString());
realm.cancelTransaction();
} finally {
realm.commitTransaction();
}
}
@Override
protected void onDestroy() {
super.onDestroy();
realm.close();
}
}
为什么 realm 显示错误?我使用正确吗?或者这只是一个错误?请帮我 ioi..
最佳答案
如错误所述,
Nested transactions are not allowed. Use commitTransaction() after each beginTransaction().
这意味着你不能做这样的事情:
realm.beginTransaction();
...
realm.beginTransaction();
realm.commitTransaction();
beginTransaction()
调用后必须跟有 commitTransaction()
或 cancelTransaction()
调用。
还强烈建议使用 executeTransaction()
而不是 begin/cancel/commit
,因为它更易于使用,并且会自动为您处理取消异常。
编辑:您不应该在使用 cancelTransaction()
回滚事务后提交事务。
请尝试用 executeTransaction()
替换 begin/cancel/commit
看看会发生什么。
此外,您可以尝试将 copyToRealm()
替换为 copyToRealmOrUpdate()
。
我认为您可能遇到了 this issue因为 UI 线程上的多个事务你遇到了失败,但实际上我不确定。
编辑 2:
private void updateGameToRealm(Game game){
Realm realm = null;
try {
realm = Realm.getDefaultInstance();
final com.nolgong.curator.model.database.Game rGame = new com.nolgong.
curator.model.database.Game(game.getId(), game.getDate(),
game.getSession(), game.getRunningTime());
realm.executeTransaction(new Realm.Transaction() {
@Override
public void execute(Realm realm) {
realm.copyToRealmOrUpdate(rGame);
}
});
} finally {
if(realm != null) {
realm.close();
}
}
}
private void updateTeamToRealm(Team team){
Realm realm = null;
try {
realm = Realm.getDefaultInstance();
final com.nolgong.curator.model.database.Team rTeam = new com.nolgong.
curator.model.database.Team(team.getId(), team.getMembers(),
team.getGameId(), team.isClientDataSynced(),
team.getJob(), team.getDigit(),
team.getPoint());
realm.executeTransaction(new Realm.Transaction() {
@Override
public void execute(Realm realm) {
realm.copyToRealmOrUpdate(rTeam);
}
});
} finally {
if(realm != null) {
realm.close();
}
}
}
关于android - Realm 异常 "nested transaction not allowed"即使没有嵌套事务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38306282/
我不明白注释之间的实际区别是什么javax.transaction.Transactional和org.springframework.transaction.annotation.Transacti
我不明白注释 javax.transaction.Transactional 和 org.springframework.transaction.annotation.Transactional 之间
我正在尝试删除一个节点。 我知道要先删除节点,我必须删除关系。 MATCH (n:`Dummy`) WHERE n.uuid='1aa41234-aaaa-xxxx-ffff-xxxx11xx0x62
假设我有一个共享钱包,可以为我和我的兄弟收集以太币。我们彼此分享这个钱包的 50%。 如果有一笔 ETH 交易进入这个钱包,是否有一种自动方式可以将收到的以太币自动发送到我的个人钱包和我兄弟的钱包,而
我已经阅读并重新阅读了文档 re: mnesia:activity/3、mnesia:activity/4 和 mnesia/transaction/2,但它们对我来说仍然像是一种晦涩难懂的外语。 在
精简版: 在 Firebase 事务(在 Java 中)中,如果我从 MutableData.getValue() 中得到意外的或不一致的(陈旧的)值,我应该如何进行错误检查并确保事务在必要时重复运行
使用 Spring 时@Transcational在服务层,我需要放置 在 xml 文件上。 我想知道 可以javax.jdo.annotations.Transactional像spring一样用在
这是我的情况。 我正在构建一个 RESTful Web 服务,从客户端接收数据,然后根据该数据创建一个事件,然后我想将这个新事件推送到 celery 以异步处理它。 我使用 Pyramid 构建 RE
这是我的情况。 我正在构建一个 RESTful web 服务,它从客户端接收数据,然后从该数据创建一个事件,然后我想将这个新事件推送到 celery 以异步处理它。 我使用 pyramid 构建 RE
当我启动 jetty 时,以下行出现在日志中: :INFO:oejpw.PlusConfiguration:No Transaction manager found - if your webapp
@Transactional(rollbackFor = someException.class) public void methodA() throws someException { t
我花了几个小时试图解决这个问题。谷歌和 Stackoverflow 也没有多大帮助。所以这里非常欢迎任何建议。 我正在尝试在更新两个相关表时对事务应用回滚逻辑: 一般的代码是: // ... $em
我在 Service 类中看到了一个方法,它被标记为 @Transactional,但它还在同一个类中调用了一些其他方法,这些方法没有被标记为 @Transactional。 这是否意味着对单独方法的
我目前正在使用 Microsoft Enterprise Library 5.0,我想知道下面的代码是否是处理事务的可接受方式。 我已经稍微简化了场景,但本质是我想在同一个事务中在不同的数据库中执行多
我已将以下服务方法注释为事务性: /* (non-Javadoc) * @see a.b.service.CustomerService#activateCustomer(a.b.m
以下是我的代码的一个代表性片段,其中在 transaction.Rollback() 处抛出了一个意外的异常,至少对我而言是这样。声明。 异常(exception)是类型 NHibernate.Tra
我试过将 COMMIT TRAN 放在 if else 循环中,但我仍然收到此错误。 我必须为一个类(class)招收一名学生。如果注册后的座位数为负数,我必须将其反转并打印一条消息说不能注册。我已经
我已经实现了一个具有事务的路由。当用户通过单击“后退”按钮移出这条路线时,我希望用户能够确认退出并丢失通过回滚事务所做的任何更改。 问题是,如果用户返回路由,Ember Data 会引发错误并指出:
当我从另一个事务方法调用一个事务方法时会发生什么,现在我的第二个事务方法已完成,并且它返回到第一个事务方法,不幸的是它失败了,所以它会回滚所有内容,意味着它会回滚第二个事务方法吗?交易方式改变..??
这个问题在这里已经有了答案: @Transactional method called from another method doesn't obtain a transaction (4 个回答)
我是一名优秀的程序员,十分优秀!