Javatpoint Logo

spring project error

By: er.har*** On: Sun Sep 18 16:00:49 IST 2016     Question Reputation0 Answer Reputation0 Quiz Belt Series Points0  0Blank User
log4j:WARN No appenders could be found for logger (org.springframework.context.support.ClassPathXmlApplicationContext).
log4j:WARN Please initialize the log4j system properly.

This error is occur while using this xml code:

applicationContext.xml
---------------------------------

<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.2.0.xsd">
<bean id="aobj" class"com.jlcindia.spring.A">
<property name="a" value="99"/>
<property name="msg" value="Hello Guys"/>
</bean>

<bean id="bobj" class"com.jlcindia.spring.B">
<constructor-arg value="88"/>
<constructor-arg value="Hi Guys!!"/>
</bean>

<bean id="hello" class"com.jlcindia.spring.Hello">
<property name="aobj" ref="aobj"/>
<constructor-arg ref="bobj"/>
</bean>
</beans>
Up0Down
spring  x  58Tags

 
Image Created0Down

By: [email protected] On: Mon Sep 19 00:25:23 IST 2016 Question Reputation0 Answer Reputation0 Belt Series Points0 0User Image
Are You Satisfied :0Yes0No
 
Image Created0Down

By: [email protected] On: Mon Sep 19 00:25:53 IST 2016 Question Reputation0 Answer Reputation0 Belt Series Points0 0User Image
Are You Satisfied :0Yes0No
 
Image Created0Down

By: [email protected] On: Mon Sep 19 00:31:30 IST 2016 Question Reputation0 Answer Reputation0 Belt Series Points0 0User Image
Are You Satisfied :0Yes0No