getHibernateTemplate() 一直报NullPointerException 错误

原来是调用方法有误正确调用方法:

 ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml"); 
        com.springmvc.hibernate.NewsDAO newsdao=(NewsDAO) ctx.getBean("NewsDAO");
        com.springmvc.hibernate.News news=new com.springmvc.hibernate.News();        
        news.setId(1);
        news.setTitle("1111111");
        news.setContents("333333333");
        news.setUpdatetime( new Timestamp(System.currentTimeMillis()));
        newsdao.save(news);


错误调用方法:

 com.springmvc.hibernate.NewsDAO newsdao =new com.springmvc.hibernate.NewsDAO ();

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。