|
160 | 160 |
|
161 | 161 | 1. __BeanFactory v/s ApplicationContext__<br>
|
162 | 162 | <table>
|
163 | | - <th> |
164 | | - <td>`BeanFactory`</td> |
165 | | - <td>`ApplicationContext`</td> |
166 | | - </th> |
| 163 | + <tr> |
| 164 | + <th>BeanFactory</th> |
| 165 | + <td>ApplicationContext</th> |
| 166 | + </tr> |
167 | 167 | <tr>
|
168 | 168 | <td>This is the root interface for accessing the Spring container.</td>
|
169 | 169 | <td>The ApplicationContext is the central interface within a Spring application that is used for providing configuration information to the application.</td>
|
170 | 170 | </tr>
|
171 | 171 | <tr>
|
172 | | - <td>Provides object when `getBean()` is called.</td> |
| 172 | + <td>Provides object when <code>getBean()</code> is called.</td> |
173 | 173 | <td>Provides a singleton object as soon as the instance of ApplicationContext IOC is created.</td>
|
174 | 174 | </tr>
|
175 | 175 | <tr>
|
176 | | - <td>`XMLBeanFactory`</td> |
177 | | - <td>`ClassPathXmlApplicationContext`</td> |
| 176 | + <td><code>XMLBeanFactory</code></td> |
| 177 | + <td><code>ClassPathXmlApplicationContext</code></td> |
178 | 178 | </tr>
|
179 | 179 | </table>
|
180 | 180 |
|
|
0 commit comments