调用 WebService 时出错 - 无法初始化代理 - 没有会话
Posted
技术标签:
【中文标题】调用 WebService 时出错 - 无法初始化代理 - 没有会话【英文标题】:ERROR during invoking WebService - could not initialize proxy - no Session 【发布时间】:2012-03-24 10:56:21 【问题描述】:应用程序:Spring + Hibernate + Apache CXF - 简单的打招呼服务,它采用一个参数 - 数据库中对象的 ID 并返回文本“Hello:” + person.getName();
这里有一些代码:
@Entity
public class Person
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
private long id;
private String login;
private String email;
//getters and setters
个人道: 公共接口 PersonDAO public void savePerson(Person person); public Person getPerson(long id);
PersonDAOImpl:
@Repository
@Transactional
public class PersonDAOImpl implements PersonDAO
@Autowired
private SessionFactory sessionFactory;
public void savePerson(Person person)
sessionFactory.getCurrentSession().save(person);
public Person getPerson(long id)
Hibernate.initialize(sessionFactory);
return (Person) sessionFactory.getCurrentSession().load(Person.class, id);
PersonWebService:
@WebService
public interface PersonWebService
public String sayHello(long id);
PersonWebServiceImpl:
@WebService(endpointInterface="com.robert.example.testowy.webservices.PersonWebService")
public class PersonWebServiceImpl implements PersonWebService
@Autowired
private PersonDAO personDAO;
public String sayHello(long id)
Person person = personDAO.getPerson(id);
return "Hello: " + person.getLogin();
和来自xml的数据源conf(dataSurce,sessionFactory):
<context:annotation-config />
<context:component-scan base-package="com.robert.example.testowy" />
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"
p:driverClassName="com.mysql.jdbc.Driver"
p:url="jdbc:mysql://localhost:3306/edyplom"
p:username="root"
p:password="sedes" />
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="packagesToScan">
<value>com.robert.example.testowy.domain</value>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">create</prop>
</props>
</property>
</bean>
<tx:annotation-driven transaction-manager="transactionManager"/>
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
我找到了一些解决方案,但对我不起作用。我感谢任何帮助建议,当然还有解决方案。
【问题讨论】:
事务从哪里开始?我在 PersonWebServiceImpl 中没有看到任何与 Transaction 相关的注释? PaersonDAO 被标记为 ttansactional。 【参考方案1】:好的,我找到了我有错误的地方......在我的例子中,WebService 方法 sayHello,应该是事务性的......在 sayHello 上添加注释 @Transactional 后工作正常。
【讨论】:
以上是关于调用 WebService 时出错 - 无法初始化代理 - 没有会话的主要内容,如果未能解决你的问题,请参考以下文章