Java Component based vs Request based frameworks

后端 未结 4 660
庸人自扰
庸人自扰 2020-12-07 10:31

I was recently asked in an interview - In java, how do you compare component based frameworks to request based frameworks? I explained EJB as an example of Component based f

4条回答
  •  旧时难觅i
    2020-12-07 10:35

    Simply, If the framework has objects in java side for each web element so you can change attributes of it or add some functionality, it is component based framework but If framework does not provide objects and you have to put the response value of web element between its tags it is a request based framework.

提交回复
热议问题