我们正在使用Spring MVC和hibernate开发一个spring应用程序。现在我们遇到了一个我们无法解决的问题。当我们尝试删除某些内容时会出现问题。
如果我们删除页面只是加载正常并进一步像所有内容都成功,但数据库中的值不会被删除。
这是我们的代码:
这是TestDao
@Repository
public class TestDaoImpl implements TestDao {
@Autowired
private SessionFactory sessionFactory;
@Override
public Test get(int id) {
return (Test)this.sessionFactory.getCurrentSession().createQuery("FROM Test WHERE id =:ident").setParameter("ident",id).uniqueResult();
}
@Override
public void delete(int id) {
this.sessionFactory.getCurrentSession().delete(this.get(id));
}
}
这是我们的服务(业务层)
@Service("testService")
public class TestServiceImpl implements TestService {
private final TestDao testDao;
@Inject
public TestServiceImpl(TestDao testDao)
{
this.testDao = testDao;
}
@Override
@Transactional
public void delete(int id) {
testDao.delete(id);
}
}
这是控制器:
@Controller
public class TestingController {
@Qualifier("testService")
@Autowired
private TestService testService;
@RequestMapping(value = "/testing")
public ModelAndView testing()
{
testService.delete(1);
return new ModelAndView("home");
}
}
这是休眠配置:
<!-- Parse database properties -->
<context:property-placeholder location="classpath:db/db.properties"/>
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="mappingResources">
<list>
<value>db/mappings/User.hbm.xml</value>
<value>db/mappings/Authority.hbm.xml</value>
<value>db/mappings/Car.hbm.xml</value>
<value>db/mappings/Address.hbm.xml</value>
<value>db/mappings/DrivingDay.hbm.xml</value>
<value>db/mappings/Message.hbm.xml</value>
<value>db/mappings/Ride.hbm.xml</value>
<value>db/mappings/RouteAgreement.hbm.xml</value>
<value>db/mappings/Route.hbm.xml</value>
<value>db/mappings/RouteTime.hbm.xml</value>
<value>db/mappings/SocialMediaLogin.hbm.xml</value>
<value>db/mappings/Variables.hbm.xml</value>
<value>db/mappings/Waypoint.hbm.xml</value>
<value>db/mappings/Test.hbm.xml</value>
</list>
</property>
<property name="dataSource">
<ref bean="dataSource"/>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
</bean>
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="${jdbc.driverClassName}"/>
<property name="url" value="${jdbc.url}"/>
<property name="username" value="${jdbc.username}"/>
<property name="password" value="${jdbc.password}"/>
</bean>
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory"/>
</bean>
我知道这是代码墙,我很抱歉,但我认为我提供了尽可能多的细节。
提前致谢
编辑:数据库中有一个id为1的值。
答案 0 :(得分:2)
您的xml中可能缺少tx:annotation-driven
- 这是触发为@Transaction带注释的bean创建代理的那个 - 如果请求不在事务中,则删除将不起作用。
答案 1 :(得分:0)
尝试, 像你这样开始/结束你的交易。
Transaction tx = session.beginTransaction();
// your operation.
tx.commit();
看起来代码执行后回滚操作。你需要提交交易。