这是spring注解的问题吗?应该怎么解决

问题描述

这是spring注解的问题吗?应该怎么解决

Error creating bean with name 'billAction': Injection of resource fields failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'billServiceImp': Injection of resource fields failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in class path resource [beans.xml]: Invocation of init method failed; nested exception is org.hibernate.PropertyNotFoundException: Could not find a getter for title in class com.ideabobo.model.Type

解决方案

你在userService这个bean里注入的userDAO没有找到对应的。
检查你的userDAO这个类是否加入了Annotation配置,注入的名称是否匹配。

解决方案二:

spring 注解问题

解决方案三:

呃,我也是初学。我只知道要在service里面的类名上面添加一个注解(如:@Component()),注解里面名字是Action层中的定义service层的属性名。接着在set方法,或者属性哪里加注解。(如:@Autowired)dao层也是这样操作。
接着,楼主看看哪里漏了吧- -

时间: 2024-12-02 21:01:40

这是spring注解的问题吗?应该怎么解决的相关文章

javaweb-关于spring注解问题。

问题描述 关于spring注解问题. Spring哪句注解可以代替织入bean例如 applicationContent.xml的 <bean id=""contentDao"" class=""com.itschool.dao.ContentDao""></bean> 这个类 public class ContentDao {} 到了这个类里面,头顶要写哪个注解才不需要到配置文件织入啊,我试过写@Co

hibernate-一个Spring4Hibernate4的开源项目,spring注解了接口,这是什么意思?

问题描述 一个Spring4Hibernate4的开源项目,spring注解了接口,这是什么意思? //Service @Service @Transactional public class UserLogonLogService extends BaseService { @Autowired private UserLogonLogDao userLogonLogDao; ... //Dao @Repository public interface UserLogonLogDao exte

关于spring注解事务传播机制的REQUIRED和REQUIRES_NEW

问题描述 关于spring注解事务传播机制的REQUIRED和REQUIRES_NEW 这是有注解REQUIRED的方法: @Transactional(propagation=Propagation.REQUIRES_NEW) public void updateUserRequired(int sid) { User user = new User(); User user1 = null; user1=getUserInfo("1", null); user.setID(&quo

【求助】DWR如何使用spring注解管理的bean

问题描述 我在开发过程中,遇到这样一个问题:用户注册时输入邮箱,然后使用dwr进行校验.<createcreator="new"javascript="LoginCheckDwr"><paramname="class"value="cn.com.web.account.dwr.LoginCheckDwr"/></create>下面是这个dwr的代码publicclassLoginCheckD

spring 注解调用为null

问题描述 spring 注解调用为null spring通过注解获取的service对象,在其他类中可以正常使用,但是在这个类中就没法用拿到的是个null 解决方案 这个类和其他类有啥差异? 解决方案二: 这个类不是在spring上下文环境中吧,用这种形式呢,applicationContext.getBean(beanType):试试吧.

spring 注解事务回滚问题

问题描述 spring 注解事务回滚问题 ,错误异常是数据库表主键不可重复,控制台报了违反了表的约术,但是SPring却不回滚..项目能正常运行.用的是注解. 解决方案 看看这里http://my.oschina.net/xuqiang/blog/97633

app-APP 与html/jsp使用同样的spring注解方式得到json 有点类似webservice

问题描述 APP 与html/jsp使用同样的spring注解方式得到json 有点类似webservice 求助:我想做到APP与jsp访问同样的controller得到json,然后页面加载, 但是我有点糊涂在一些spring mvc 配置中使用ModelAndView("...jsp")的形式来跳转页面, 该怎么设计才好 解决方案 增加@ResponseBody 注解,返回json串

sping hibernate 事务-spring注解方式事务控制没有回滚

问题描述 spring注解方式事务控制没有回滚 项目中使用到了hibernate以及spring事务控制,在service层增加事务控制但是遇到异常没有回滚. 代码如下: 配置文件 <?xml version="1.0" encoding="UTF-8"?> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springfr

关于spring注解定时任务查hibernate没有释放连接

问题描述 关于spring注解定时任务查hibernate没有释放连接 如图,我按照网上的教程配置好了spring 的注解定时任务,但是每次执行了几次以后,数据库的连接数就上升,连接数没释放,我的是spring 管理hibernate关闭session的,别的类都没有这个问题,唯独是这个TimeService不能关闭.当然,我自己open一个Session是没有问题的,连接数不能上升,但是我想更加简便,而不需要每次都要我打开一个session关闭它.