In JSF practically speaking in terms of coding what is the d

In JSF practically speaking in terms of coding what is the difference between a managed bean and an unmanaged bean
In JSF practically speaking in terms of coding what is the difference between a managed bean and an unmanaged bean
In JSF practically speaking in terms of coding what is the difference between a managed bean and an unmanaged bean

Solution

import javax.faces.bean.ManagedBean;

import javax.faces.bean.SessionScoped;

@ManagedBean

@SessionScoped

public class Beannn {

private String message = \"Hello managed Bean\";

public String getMessage() {

return message;

}

public void setMessage(String message) {

this.message = message;

}

}

public class unmanaged{

private String message = \"Hello unmanaged Bean\";

public String getMessage() {

return message;

}

public void setMessage(String message) {

this.message = message;

}

}

 In JSF practically speaking in terms of coding what is the difference between a managed bean and an unmanaged bean In JSF practically speaking in terms of codi

Get Help Now

Submit a Take Down Notice

Tutor
Tutor: Dr Jack
Most rated tutor on our site