08-11-2006 07:40 AM
package org.soluziona;
class Prueba{
private String pinta;
public String getPinta() {
return("Hello World");
}
public void setPinta(String s) {
System.out.println(s);
}
}
<managed-bean>
<managed-bean-name>prueba</managed-bean-name>
<managed-bean-class>org.soluziona.Prueba</managed-bean-class>
<managed-bean-scope>request</managed-bean-scope>
<managed-property>
<property-name>pinta</property-name>
<value></value>
</managed-property>
</managed-bean>
08-11-2006 08:35 AM
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans>
<!– Registration of new bean –>
<bean id="prueba" class="org.soluziona.Prueba">
<property name="pinta">
<value>Beeeeee</value>
</property>
</bean>
</beans>
08-11-2006 10:00 AM
class Prueba
public class Prueba
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.