我已經給了一個Java Spring應用程序來進行容器化。我正在使用Tomcat8/Java8基本映像。當它啓動時,它無法與以下錯誤部署:Spring應用程序中的區分大小寫問題
Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'controller3P' for bean class [com.******.******.brand3P.controller.Controller3P] conflicts with existing, non-compatible bean definition of same name and class [com.******.******.Brand3P.controller.Controller3P]
這裏的問題似乎是春天發現2個衝突的班,由「brand3P」和「Brand3P」分化。
但是,在源代碼中,我找不到一個類「Brand3P」,只有一個類「brand3P」。
任何人都可以解釋一下Spring在這裏做什麼?
(做個好青年,我是行動,而不是開發)
謝謝。這是非常多的,但我發佈了一個單獨的答案,以防萬一。 –