org.jboss.narayana.quickstart.spring.Launch.java Source code

Java tutorial

Introduction

Here is the source code for org.jboss.narayana.quickstart.spring.Launch.java

Source

/*
 * JBoss, Home of Professional Open Source
 * Copyright 2013, Red Hat, Inc. and/or its affiliates, and individual
 * contributors by the @authors tag. See the copyright.txt in the
 * distribution for a full listing of individual contributors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * http://www.apache.org/licenses/LICENSE-2.0
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.jboss.narayana.quickstart.spring;

import com.arjuna.ats.arjuna.coordinator.TransactionReaper;
import com.arjuna.ats.arjuna.coordinator.TxControl;
import com.arjuna.ats.jbossatx.jta.RecoveryManagerService;
import org.jboss.narayana.quickstart.spring.service.ExampleService;
import org.jboss.narayana.quickstart.spring.xa.DummyXAResource;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.support.AbstractApplicationContext;

public class Launch {
    public static void main(String[] args) throws Exception {
        AbstractApplicationContext context = new AnnotationConfigApplicationContext(
                Launch.class.getPackage().getName());
        ExampleService service = context.getBean(ExampleService.class);

        if (args.length == 1) {
            RecoveryManagerService recoveryManagerService = context.getBean(RecoveryManagerService.class);
            if (args[0].equals("-f")) {
                System.out.println("Generate something to recovery ...");
                service.testRecovery();
            } else if (args[0].equals("-r")) {
                System.out.println("start the recovery manager");
                recoveryManagerService.start();

                System.out.println("recovery manager scan ...");
                while (DummyXAResource.getCommitRequests() == 0) {
                    Thread.sleep(1000);
                }

                System.out.println("stop the recovery manager");
                recoveryManagerService.stop();
            } else if (args[0].equals("-c")) {
                service.checkRecord();
            }
        } else {
            service.testCommit();
            service.checkRecord();
        }

        service.shutdownDatabase();
        TxControl.disable(true);
        TransactionReaper.terminate(true);
    }
}