gpt4 book ai didi

spring - Hibernate+Spring访问Websphere数据源

转载 作者:行者123 更新时间:2023-12-04 19:13:00 24 4
gpt4 key购买 nike

我正在处理一个门户项目,我被迫使用 WebSphere Portal、Spring portlet MVC 和 Hibernate。我在配置 Spring 和 Hibernate 方面都没有太多经验,因此非常感谢各种帮助。
我在 WebSphere 7.0.0.25(安装了 Portal 6.1)上创建了一个 JNDI 名称为 jdbc/eshop 的 JDBC 数据源。然后我指定了 JAAS 身份验证别名并将其设置为容器管理的身份验证别名。测试连接尝试成功,所以我猜数据源的配置是合适的。
我的下一步是在 web.xml 中进行资源引用:

<resource-ref>    
<description>DB Connection</description>
<res-ref-name>eshop</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>

为了将 res-ref-name 绑定(bind)到 ibm-web-bnd 中的实际 JNDI 名称,我添加了这一行:
<resource-ref name="eshop" binding-name="java:comp/env/jdbc/eshop" />

现在我的 hibernate 实体:
@Entity
@Table(name = "HIBERNATE_TEST", schema = "SCHEME_NAME")
public class HibernateTest implements java.io.Serializable {

private short id;
private String text;

public HibernateTest() {
}

public HibernateTest(String text) {
this.text = text;
}


@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
@Column(name = "ID")
public short getId() {
return this.id;
}

public void setId(short id) {
this.id = id;
}

@Column(name = "TEXT", nullable = false, length = 10)
public String getText() {
return this.text;
}

public void setText(String text) {
this.text = text;
}

hibernate 测试DAO:
@Repository("hibernateTestDAO")
@Transactional
public class HibernateTestDAO implements GenericDAO<HibernateTest> {
@Autowired
private SessionFactory sessionFactory;

private Session sess;

public HibernateTestDAO () {

}

public SessionFactory getSessionFactory() {
return sessionFactory;
}

public void setSessionFactory(SessionFactory sf) {
sessionFactory = sf;
}

public boolean add(HibernateTest item) {
boolean isAdded = false;
try {
sess = sessionFactory.getCurrentSession();
sess.persist(item);
isAdded = true;
} catch (Exception e) {
e.printStackTrace();
}
return isAdded;
}

public boolean edit(HibernateTest item) {
boolean isEdited = false;
try {
sess = sessionFactory.getCurrentSession();
item = (HibernateTest)sess.merge(item);
sess.update(item);
isEdited = true;
} catch (Exception e) {
e.printStackTrace();
}
return isEdited;
}

public boolean delete(HibernateTest item) {
boolean isDeleted = false;
try {
sess = sessionFactory.getCurrentSession();
item = (HibernateTest)sess.merge(item);
sess.delete(item);
isDeleted = true;
} catch (Exception e) {
e.printStackTrace();
}
return isDeleted;
}

@SuppressWarnings("unchecked")
@Override
@Transactional(readOnly = true)
public List<HibernateTest> getAll() {
List<HibernateTest> l = new ArrayList<HibernateTest>(0);
try {
sess = sessionFactory.getCurrentSession();
Query q = sess.createQuery("FROM HibernateTest");
l = (List<HibernateTest>) q.list();
} catch (Exception e) {
e.printStackTrace();
}
return l;
}

@Override
@Transactional(readOnly = true)
public HibernateTest getByID(long id) {
try {
sess = sessionFactory.getCurrentSession();
return (HibernateTest)sess.get(HibernateTest.class, new Short((short)id));
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
}

如您所见,我不想使用程序管理的事务。我了解到,Spring 有 WebSphereUowTransactionManager 类来管理 WebSphere 数据源的事务。
我试过这个配置(applicationContext.xml):
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/jee
http://www.springframework.org/schema/jee/spring-jee-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">

<context:annotation-config />
<context:component-scan base-package="test.dao,test.entities,test.portlet.controller" />

<bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName" value="jdbc/eshop"/>
<property name="lookupOnStartup" value="false"/>
<property name="cache" value="true" />
<property name="proxyInterface" value="javax.sql.DataSource" />
</bean>

<!-- Hibernate SessionFactory -->
<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="annotatedClasses">
<list>
<value>test.entities.HibernateTest</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.DB2Dialect</prop>
<prop key="hibernate.show_sql">true</prop>
<!-- IBM WAS SPECIFIC -->
<prop key="hibernate.connection.datasource">jdbc/eshop</prop>
<prop key="hibernate.transaction.factory_class">org.hibernate.transaction.CMTTransactionFactory</prop>
<prop key="hibernate.transaction.manager_lookup_class">org.hibernate.transaction.WebSphereExtendedJTATransactionLookup</prop>
<prop key="hibernate.transaction.jta.platform">org.hibernate.service.jta.platform.internal.WebSphereExtendedJtaPlatform</prop>
<!-- /END IBM WAS SPECIFIC -->
</props>
</property>
</bean>

<bean id="transactionManager"
class="org.springframework.transaction.jta.WebSphereUowTransactionManager">
<property name="userTransactionName" value="java:comp/UserTransaction" />
</bean>

<bean id="hibernateTestDAO" class="test.dao.HibernateTestDAO" />

</beans>

,但它会导致这个异常链:

Error 500: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'transactionManager' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is org.springframework.transaction.TransactionSystemException: JTA UserTransaction is not available at JNDI location [java:comp/UserTransaction]; nested exception is org.springframework.jndi.TypeMismatchNamingException: Object of type [class com.ibm.ws.tx.jta.UserTransactionImpl] available at JNDI location [java:comp/UserTransaction] is not assignable to [javax.transaction.UserTransaction]



我知道这种情况下的典型解决方案是从类路径中删除 jta.jar,但我的类路径中没有这个 jar!
我只是不明白 IBM 如何使用一些特定于供应商的库来创建 UserTransaction 类,但我应该让它工作,所以我需要你的帮助来配置我的应用程序。

另外我想补充一点,我在这个问题上工作了大约 3 天,尝试了不同的配置,但遗憾的是没有成功。所以我决定使用 this source 中的工作(如作者所说)配置作为在这里提出问题的起点。我已经没有办法解决这个问题了,所以我需要帮助。

更新

我可以解决 Hibernate 对当前事务的提示的问题:没有 <tx:annotation-driven transaction-manager="transactionManager" />指定了元素,所以我想 UOWManager 不知道我希望何时开始事务。但事实证明,这并不是我困难的结束。
portlet Controller 的代码如下:
public class TestDIController extends AbstractController implements ApplicationContextAware{

private ApplicationContext appCtx;

@Override
public ModelAndView handleRenderRequest(RenderRequest request,
RenderResponse response) throws Exception {
appCtx = getApplicationContext();
System.out.println(UserTransaction.class.getClassLoader());
@SuppressWarnings("rawtypes")
GenericDAO cd = (GenericDAO)appCtx.getBean("hibernateTestDAO");
ModelAndView m = new ModelAndView("test").addObject("list", cd.getAll());
return m;
}
}

当 ModelAndView 实例尝试向自身添加新对象时,HibernateTestDAO 的代码行 l = (List<HibernateTest>) q.list();引发以下异常

org.hibernate.exception.SQLGrammarException: Could not open connection

... some stack trace...

Caused by: java.sql.SQLException: [jcc][t4][10205][11234][3.58.81] Null userid is not supported. ERRORCODE=-4461, SQLSTATE=42815DSRA0010E: SQL State = 42815, Error Code = -4 461



而且这个错误比较困惑,因为我已经指定了Container-managed authentication alias,见下图

enter image description here
其中 'auth' 是我的 JAAS-J2C 身份验证别名。
当我从管理控制台测试到数据源的连接时,它总是成功的!我尽我所能寻找这个问题的答案,但在这一点上没有结果。例如, problem described here和我的差不多,但是这个解决方案不适合我,因为元素 <lookup-name>在我的 web.xml 中未定义。
可能是我应该在 WebSphere 上配置一些 J2C 选项、资源适配器,可能是 applicationContext 中缺少一些配置行,谁能帮忙?这次我真的很困惑。

最佳答案

com.ibm.ws.tx.jta.UserTransactionImpl实现 javax.transaction.UserTransaction .你的代码很好。很可能您正在使用 parent-last ClassLoader 策略并且拥有 javax.transaction.UserTransaction在您的应用程序的一个 jar 中。

尝试摆脱它javax.transaction.UserTransaction从您的应用程序。

关于spring - Hibernate+Spring访问Websphere数据源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13295412/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com