1

私は春が初めてで、春の設定ファイルが例外をスローする休止状態です

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" 
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:mvc="http://www.springframework.org/schema/mvc" 
 xmlns:beans="http://www.springframework.org/schema/beans"
 xmlns:context="http://www.springframework.org/schema/context" 
  xmlns:tx="http://www.springframework.org/schema/tx"
 xsi:schemaLocation="http://www.springframework.org/schema/mvc 
 http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd 
 http://www.springframework.org/schema/beans 
  http://www.springframework.org/schema/beans/spring-beans.xsd
 http://www.springframework.org/schema/tx 
http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
http://www.springframework.org/schema/context 
http://www.springframework.org/schema/context/spring-context-3.2.xsd">
<mvc:annotation-driven></mvc:annotation-driven>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
 <property name="prefix" value="/WEB-INF/"/> 
 <property name="suffix" value=".jsp"/> 
  </bean>
   <context:component-scan></context:component-scan>
   </beans>

それは cvc-complex-type.4 を与えます: 属性 'base-package' は要素 'context:component-scan' に現れる必要があります。

4

1 に答える 1

2

エラー情報を読むだけで、このようにコンポーネントスキャンを追加する必要があります

<context:component-scan base-package="com.xxx.service"/>

Spring にパッケージをスキャンし、@Component、@Service、@Controller などのすべての Bean アノテーションを Spring コンテキストに追加するように指示します。

この基本パッケージのクラスに上記のアノテーションを追加すると、この Bean を Spring コンテキストで使用できます。

于 2013-08-13T04:02:34.777 に答える