我在Spring上構建一個Web應用程序。does <context:annotation-config />處理HTTP請求
我很困惑我是否應該使用MVC:註解驅動或背景:註解配置在配置掃描註釋來處理HTTP請求?
我在Spring上構建一個Web應用程序。does <context:annotation-config />處理HTTP請求
我很困惑我是否應該使用MVC:註解驅動或背景:註解配置在配置掃描註釋來處理HTTP請求?
不,儘管容易混淆地類似的關鍵字,annotation-config
不處理HTTP請求。對於處理HTTP請求,您只需要mvc:註釋驅動。
context:annotation-config
引起的Java類的配置與被加載@Configuration
註解。見documentation
mvc:annotation-driven
導致春季要連接任何@RequestMapping
,@Controller
註釋等見documentation