cvc-complex-type.2.4.a: Invalid content was found starting with element 'param-value'.
란 오류가 발생했다. 조금 화났다.
<context-param>
<param-value>/*-context.xml</param-value>
<param-name>contextConfigLocation</param-name>
</context-param>
이런 코드이다.
쉽게 해결할 수 있다.
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/*-context.xml</param-value>
</context-param>
다음과 같이 <param-name> 과 <param-value> 위치를 바꿔주면 된다.
헷갈릴 수 있으니까 ...
반응형