📄 transaction.java
字号:
// ========================================================================// $Id: Transaction.java 3680 2008-09-21 10:37:13Z janb $// Copyright 2006 Mort Bay Consulting Pty. Ltd.// ------------------------------------------------------------------------// 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.mortbay.jetty.plus.naming;import javax.naming.*;import javax.transaction.UserTransaction;import org.mortbay.log.Log;import org.mortbay.naming.NamingUtil;/** * Transaction * * Class to represent a JTA UserTransaction impl. * * *//** * Transaction * * */public class Transaction extends NamingEntry{ public static final String USER_TRANSACTION = "UserTransaction"; public static void bindToENC () throws NamingException { Transaction txEntry = (Transaction)NamingEntryUtil.lookupNamingEntry(null, Transaction.USER_TRANSACTION); if ( txEntry != null ) { txEntry.bindToComp(); } else { throw new NameNotFoundException( USER_TRANSACTION + " not found" ); } } public Transaction (UserTransaction userTransaction) throws NamingException { super (USER_TRANSACTION, userTransaction); } /** * Allow other bindings of UserTransaction. * * These should be in ADDITION to java:comp/UserTransaction * @see org.mortbay.jetty.plus.naming.NamingEntry#bindToENC(java.lang.String) */ public void bindToENC (String localName) throws NamingException { InitialContext ic = new InitialContext(); Context env = (Context)ic.lookup("java:comp/env"); Log.debug("Binding java:comp/env"+getJndiName()+" to "+objectNameString); NamingUtil.bind(env, localName, new LinkRef(objectNameString)); } /** * Insist on the java:comp/UserTransaction binding * @throws NamingException */ private void bindToComp () throws NamingException { //ignore the name, it is always bound to java:comp InitialContext ic = new InitialContext(); Context env = (Context)ic.lookup("java:comp"); Log.debug("Binding java:comp/"+getJndiName()+" to "+objectNameString); NamingUtil.bind(env, getJndiName(), new LinkRef(objectNameString)); } /** * Unbind this Transaction from a java:comp */ public void unbindENC () { try { InitialContext ic = new InitialContext(); Context env = (Context)ic.lookup("java:comp"); Log.debug("Unbinding java:comp/"+getJndiName()); env.unbind(getJndiName()); } catch (NamingException e) { Log.warn(e); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -