difference between runtime mode and design time mode
4 points
Answers
Answered by
1
Explanation :
Design Time Mode
All resource files which are required by Application Designer are read from the file system using the cis home parameter value inside the web.xml configuration file.
The Application Designer class loader may be used. This means you can use the feature to dynamically reload application classes without having to restart the web application all the time.
Runtime Mode
All resource files are read internally via mechanisms of the servlet container, by which a web application can access its resource files.
The Application Designer class loader must not be used.
Similar questions