Examples of Stanowisko


Examples of pl.zgora.uz.wmie.fe.hbm.classes.Stanowisko

    Context context = new InitialContext();
    TransactionManager txm = (TransactionManager) context
        .lookup("java:/TransactionManager");
    javax.transaction.Transaction tx = txm.getTransaction();
    System.out.println(tx);
    Stanowisko s = new Stanowisko();
    s.setNazwa("mirek");
    pl.zgora.uz.wmie.fe.service.StanowiskoService stanowiskoService = (StanowiskoService) new InitialContext()
        .lookup("StanowiskoService/remote");
    stanowiskoService.save(s); // uwzgledni atrybut transakcji;samo save(s)
    // nieuwzgledni
    // inni tez maja ten problem u rozwiazuje sie go tak ze sie nie tworzy
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.