<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="https://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    Spring2.5 Component Scan Not Working in JB 7AS
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="https://community.jboss.org/people/deepusrp">Deepak S</a> in <i>JBoss AS 7 Development</i> - <a href="https://community.jboss.org/message/729409#729409">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>Hello Folks,</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p> I'm using JBoss 7 AS(jboss-as-7.1.0.Final) as my server.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p> I have 2 questions...</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p> 1.&#160; I'm using Eclipse Helios SR2.&#160; I'm not able to get the proper pluging to have JBOSS AS as my server in eclipse.</p><p>&#160;&#160;&#160;&#160; I got several sites in net for the plugin, but when i tried to install it says conflicting, and it closes.</p><p>&#160;&#160;&#160;&#160; Can i add Jboss 7 AS to my eclipse ?</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p> 2.&#160; I'm using spring 2.5, JSF and hibernate application.&#160; </p><p>&#160;&#160;&#160;&#160; The problem is i have used annotation for component and repository&#160; but it is not getting initialized.&#160;&#160; Basically&#160; spring component scanner is not working.</p><p>&#160;&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160; Please find the code snippets:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160;&#160; Web.xml:&#160;&#160;&#160;&#160; </p><pre class="jive-pre"><code class="jive-code jive-xml"><span class="jive-xml-tag">&lt;?xml version="1.0" encoding="UTF-8"?&gt;</span>
<span class="jive-xml-tag"><span>&lt;web-app xmlns:xsi="</span><a class="jive-link-external-small" href="http://www.w3.org/2001/XMLSchema-instance" target="_blank">http://www.w3.org/2001/XMLSchema-instance</a><span>"
&#160;&#160;&#160; xmlns="</span><a class="jive-link-external-small" href="http://java.sun.com/xml/ns/javaee" target="_blank">http://java.sun.com/xml/ns/javaee</a><span>" 
&#160;&#160;&#160; xsi:schemaLocation="</span><a class="jive-link-external-small" href="http://java.sun.com/xml/ns/javaee" target="_blank">http://java.sun.com/xml/ns/javaee</a><span> 
&#160;&#160;&#160;&#160;&#160; </span><a class="jive-link-external-small" href="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" target="_blank">http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd</a><span>"
&#160;&#160;&#160; version="2.5"&gt;</span></span>

&#160;&#160;&#160; <span class="jive-xml-tag">&lt;listener&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;listener-class&gt;</span>org.springframework.web.context.ContextLoaderListener<span class="jive-xml-tag">&lt;/listener-class&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/listener&gt;</span>

&#160;&#160;&#160; <span class="jive-xml-tag">&lt;listener&gt;</span>
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;listener-class&gt;</span>org.springframework.web.context.request.RequestContextListener<span class="jive-xml-tag">&lt;/listener-class&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/listener&gt;</span>
&#160;&#160;&#160; 
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;context-param&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;param-name&gt;</span>contextConfigLocation<span class="jive-xml-tag">&lt;/param-name&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;param-value&gt;</span>/WEB-INF/applicationContext.xml<span class="jive-xml-tag">&lt;/param-value&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/context-param&gt;</span>
</code></pre><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>applicationContext.xml</p><pre class="jive-pre"><code class="jive-code jive-xml"><span class="jive-xml-tag">&lt;?xml version="1.0" encoding="UTF-8"?&gt;</span>
<span class="jive-xml-tag"><span>&lt;beans xmlns="</span><a class="jive-link-external-small" href="http://www.springframework.org/schema/beans" target="_blank">http://www.springframework.org/schema/beans</a><span>"
&#160;&#160;&#160;&#160;&#160;&#160; xmlns:xsi="</span><a class="jive-link-external-small" href="http://www.w3.org/2001/XMLSchema-instance" target="_blank">http://www.w3.org/2001/XMLSchema-instance</a><span>"
&#160;&#160;&#160;&#160;&#160;&#160; xmlns:context="</span><a class="jive-link-external-small" href="http://www.springframework.org/schema/context" target="_blank">http://www.springframework.org/schema/context</a><span>"
&#160;&#160;&#160;&#160;&#160;&#160; xsi:schemaLocation="</span><a class="jive-link-external-small" href="http://www.springframework.org/schema/beans" target="_blank">http://www.springframework.org/schema/beans</a><span> 
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </span><a class="jive-link-external-small" href="http://www.springframework.org/schema/beans/spring-beans-3.0.xsd" target="_blank">http://www.springframework.org/schema/beans/spring-beans-3.0.xsd</a><span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </span><a class="jive-link-external-small" href="http://www.springframework.org/schema/context" target="_blank">http://www.springframework.org/schema/context</a><span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </span><a class="jive-link-external-small" href="http://www.springframework.org/schema/context/spring-context-3.0.xsd" target="_blank">http://www.springframework.org/schema/context/spring-context-3.0.xsd</a><span>"&gt;</span></span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;context:component-scan base-package="main.controllerbeans" /&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;context:annotation-config /&gt;</span>
&#160;&#160;&#160; 
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;bean id="propertyPlaceholderConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;property name="locations"&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;list&gt;</span><span class="jive-xml-tag">&lt;value&gt;</span>/WEB-INF/configuration.properties<span class="jive-xml-tag">&lt;/value&gt;</span><span class="jive-xml-tag">&lt;/list&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/property&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/bean&gt;</span>
&#160;&#160;&#160; 
&#160;&#160;&#160; <span class="jive-xml-comment">&lt;!-- IMPORTING HIBERNATE SETTINGS --&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;import resource="/db-config.xml"/&gt;</span>
</code></pre><p>Component scan is not working... it seems</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>db-config.xml</p><pre class="jive-pre"><code class="jive-code jive-xml"><span class="jive-xml-tag">&lt;?xml version="1.0" encoding="UTF-8"?&gt;</span>
<span class="jive-xml-tag"><span>&lt;beans xmlns="</span><a class="jive-link-external-small" href="http://www.springframework.org/schema/beans" target="_blank">http://www.springframework.org/schema/beans</a><span>"
&#160;&#160;&#160; xmlns:xsi="</span><a class="jive-link-external-small" href="http://www.w3.org/2001/XMLSchema-instance" target="_blank">http://www.w3.org/2001/XMLSchema-instance</a><span>" xmlns:p="</span><a class="jive-link-external-small" href="http://www.springframework.org/schema/p" target="_blank">http://www.springframework.org/schema/p</a><span>"
&#160;&#160;&#160; xmlns:context="</span><a class="jive-link-external-small" href="http://www.springframework.org/schema/context" target="_blank">http://www.springframework.org/schema/context</a><span>" xmlns:tx="</span><a class="jive-link-external-small" href="http://www.springframework.org/schema/tx" target="_blank">http://www.springframework.org/schema/tx</a><span>"
&#160;&#160;&#160; xsi:schemaLocation="</span><a class="jive-link-external-small" href="http://www.springframework.org/schema/beans" target="_blank">http://www.springframework.org/schema/beans</a><span> </span><a class="jive-link-external-small" href="http://www.springframework.org/schema/beans/spring-beans.xsd" target="_blank">http://www.springframework.org/schema/beans/spring-beans.xsd</a><span>
&#160;&#160;&#160; </span><a class="jive-link-external-small" href="http://www.springframework.org/schema/tx" target="_blank">http://www.springframework.org/schema/tx</a><span> </span><a class="jive-link-external-small" href="http://www.springframework.org/schema/tx/spring-tx-3.0.xsd" target="_blank">http://www.springframework.org/schema/tx/spring-tx-3.0.xsd</a><span>
&#160;&#160;&#160; </span><a class="jive-link-external-small" href="http://www.springframework.org/schema/context" target="_blank">http://www.springframework.org/schema/context</a><span> </span><a class="jive-link-external-small" href="http://www.springframework.org/schema/context/spring-context-3.0.xsd" target="_blank">http://www.springframework.org/schema/context/spring-context-3.0.xsd</a><span>"&gt;</span></span>

&#160;&#160;&#160; <span class="jive-xml-tag">&lt;bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close"&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;property name="driverClass"&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;value&gt;</span>${jdbc.driver.className}<span class="jive-xml-tag">&lt;/value&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/property&gt;</span>

&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;property name="jdbcUrl"&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;value&gt;</span>${jdbc.url}<span class="jive-xml-tag">&lt;/value&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/property&gt;</span>

&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;property name="user"&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;value&gt;</span>${jdbc.username}<span class="jive-xml-tag">&lt;/value&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/property&gt;</span>

&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;property name="password"&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;value&gt;</span>${jdbc.password}<span class="jive-xml-tag">&lt;/value&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/property&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/bean&gt;</span>

&#160;&#160;&#160; <span class="jive-xml-tag">&lt;bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean"&gt;</span>

&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;property name="dataSource"&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;ref bean="dataSource" /&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/property&gt;</span>

&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-comment">&lt;!-- <span class="jive-xml-tag">&lt;property name="packagesToScan" value="main.dbentities" /&gt;</span> --&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; 
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;property name="hibernateProperties"&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;props&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;prop key="hibernate.dialect"&gt;</span>${jdbc.hibernate.dialect}<span class="jive-xml-tag">&lt;/prop&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;prop key="hibernate.show_sql"&gt;</span>false<span class="jive-xml-tag">&lt;/prop&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/props&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/property&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; 
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;property name="packagesToScan" value="org.adit.spring.hibernate.entity" /&gt;</span>
&#160;&#160;&#160; 
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/bean&gt;</span>

&#160;&#160;&#160; <span class="jive-xml-tag">&lt;bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"&gt;</span>

&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;property name="sessionFactory"&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;ref bean="sessionFactory" /&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/property&gt;</span>

&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/bean&gt;</span>

&#160;&#160;&#160; <span class="jive-xml-tag">&lt;context:annotation-config /&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;tx:annotation-driven /&gt;</span>
&#160;&#160;&#160; 
&#160;&#160;&#160; 
&#160;&#160;&#160; 

<span class="jive-xml-tag">&lt;/beans&gt;</span>
</code></pre><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>faces-config.xml</p><pre class="jive-pre"><code class="jive-code jive-xml"><span class="jive-xml-tag">&lt;?xml version="1.0"?&gt;</span>
<span class="jive-xml-tag"><span>&lt;faces-config xmlns="</span><a class="jive-link-external-small" href="http://java.sun.com/xml/ns/javaee" target="_blank">http://java.sun.com/xml/ns/javaee</a><span>" 
&#160;&#160; xmlns:xsi="</span><a class="jive-link-external-small" href="http://www.w3.org/2001/XMLSchema-instance" target="_blank">http://www.w3.org/2001/XMLSchema-instance</a><span>"
&#160;&#160; xsi:schemaLocation="</span><a class="jive-link-external-small" href="http://java.sun.com/xml/ns/javaee" target="_blank">http://java.sun.com/xml/ns/javaee</a><span> 
&#160;&#160;&#160;&#160;&#160; </span><a class="jive-link-external-small" href="http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd" target="_blank">http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd</a><span>"
&#160;&#160; version="2.0"&gt;</span></span>

&#160;&#160;&#160; <span class="jive-xml-tag">&lt;application&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;el-resolver&gt;</span>org.springframework.web.jsf.el.SpringBeanFacesELResolver<span class="jive-xml-tag">&lt;/el-resolver&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/application&gt;</span>
</code></pre><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>NotificationBean.java</p><pre class="jive-pre"><code class="jive-code jive-java"><font color="navy"><b>import</b></font> java.io.Serializable;
&#160;
<font color="navy"><b>import</b></font> javax.faces.bean.RequestScoped;
&#160;
<font color="navy"><b>import</b></font> main.dao.NotificationDAO;
<font color="navy"><b>import</b></font> main.dbentities.Notification;
&#160;
<font color="navy"><b>import</b></font> org.springframework.beans.factory.annotation.Autowired;
<font color="navy"><b>import</b></font> org.springframework.stereotype.Component;
&#160;
@Component(<font color="red">"notificationBean"</font>)
@RequestScoped
<font color="navy"><b>public</b></font> <font color="navy"><b>class</b></font> NotificationBean <font color="navy"><b>implements</b></font> Serializable <font color="navy">{</font>
&#160;&#160;&#160; 
&#160;&#160;&#160; <font color="navy"><b>private</b></font> <font color="navy"><b>static</b></font> <font color="navy"><b>final</b></font> <font color="navy"><b>long</b></font> serialVersionUID = -3637354326738964505L;
&#160;
&#160;&#160;&#160; @Autowired
&#160;&#160;&#160; Notification notification;
&#160;&#160;&#160; 
&#160;&#160;&#160; @Autowired
&#160;&#160;&#160; <font color="navy"><b>public</b></font> NotificationDAO notificationDao;
&#160;&#160;&#160; 
&#160;&#160;&#160; <font color="navy"><b>public</b></font> NotificationBean() <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; notification = <font color="navy"><b>new</b></font> Notification();
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="darkgreen">//notificationDao = new NotificationDaoImpl();</font>
&#160;&#160;&#160; <font color="navy">}</font>
&#160;
&#160;&#160;&#160; <font color="navy"><b>public</b></font> <font color="navy"><b>void</b></font> persist()<font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; System.out.println(<font color="red">"Persist Method"</font>);
&#160;&#160;&#160;&#160;&#160;&#160;&#160; notification.setUserId(111);
&#160;&#160;&#160;&#160;&#160;&#160;&#160; notification.setPriorityId(1);
&#160;&#160;&#160;&#160;&#160;&#160;&#160; notificationDao.save(notification);
&#160;&#160;&#160; <font color="navy">}</font>
</code></pre><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>In my xhtml page i have a&#160; input text box:</p><p>&lt;h:inputText id="englishMessageTitle" value="#{notificationBean.notification.notificationTitleEng}" /&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>And there is submit button:</p><p>&lt;h:commandButton class="btn_empty" id="submit" value="#{msg['CreateNotification.Submit']}" action="#{notificationBean.persist}" /&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I'm getting the follwoing exception:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><pre class="jive-pre"><code class="jive-code">javax.el.PropertyNotFoundException: /xhtml/postmessage.xhtml @36,111 value="#{notificationBean.notification.notificationTitleEng}": Target Unreachable, identifier 'notificationBean' resolved to null
 at com.sun.faces.facelets.el.TagValueExpression.getType(TagValueExpression.java:100)
 at com.sun.faces.renderkit.html_basic.HtmlBasicInputRenderer.getConvertedValue(HtmlBasicInputRenderer.java:95)
 at javax.faces.component.UIInput.getConvertedValue(UIInput.java:1030)
 at javax.faces.component.UIInput.validate(UIInput.java:960)
 at javax.faces.component.UIInput.executeValidate(UIInput.java:1233)
 at javax.faces.component.UIInput.processValidators(UIInput.java:698)

</code></pre><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Its unable to resolve the bean notificationBean</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Following are the Jars that i have in my web-inf/lib:</p><p style="padding-left: 30px;">c3p0-0.9.1.2.jar</p><p style="padding-left: 30px;">commons-collections-3.2.1.jar</p><p style="padding-left: 30px;">commons-dbcp-1.4.jar</p><p style="padding-left: 30px;">dom4j-1.6.1.jar</p><p style="padding-left: 30px;">hibernate-3.2.1.ga.jar</p><p style="padding-left: 30px;">hibernate-annotations-3.4.0.GA.jar</p><p style="padding-left: 30px;">hibernate-commons-annotations-3.1.0.GA.jar</p><p style="padding-left: 30px;">hibernate-core-3.3.2.GA.jar</p><p style="padding-left: 30px;">jboss-el-2.0.1.GA.jar</p><p style="padding-left: 30px;">jsf-api.jar</p><p style="padding-left: 30px;">jsf-impl.jar</p><p style="padding-left: 30px;">jsp-2.1-6.0.2.jar</p><p style="padding-left: 30px;">jstl-api-1.2.jar</p><p style="padding-left: 30px;">jstl-impl-1.2.jar</p><p style="padding-left: 30px;">mysql-connector-java-3.0.17-ga-bin.jar</p><p style="padding-left: 30px;">org.springframework.context-2.5.6.SEC01.jar</p><p style="padding-left: 30px;">org.springframework.core-2.5.6.SEC01.jar</p><p style="padding-left: 30px;">org.springframework.transaction-2.5.6.A.jar</p><p style="padding-left: 30px;">persistence-api-1.0.jar</p><p style="padding-left: 30px;">spring-2.5.6.SEC01.jar</p><p style="padding-left: 30px;">spring-beans-2.5.6.SEC01.jar</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Please let me know what is the problem, and let me know if u need any other information.</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="https://community.jboss.org/message/729409#729409">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in JBoss AS 7 Development at <a href="https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2225">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>