위 링크의 따라하기를 따라하거나 파일을 받아 실행해보며 발생했던 혹은 발생할 수 있는 문제 해결

해결 방법은 넥사크로에서 Project Explorer > TypeDefinition > Services > svc의 URL이 8090으로 되어있는 것을 8080으로 변경해주고 브라우저 캐시 삭제하고 다시 실행하기
<!-- Servlet -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.29</version>
</dependency>
<if test="keyword != null and keyword != ''">
<choose>
<!-- LIKE의 %는 DB마다 방법이 다릅니다 -->
<when test="searchType == 'ID'">
AND ID LIKE CONCAT('%', #{keyword}, '%')
</when>
<when test="searchType == 'NAME'">
AND NAME LIKE CONCAT('%', #{keyword}, '%')
</when>
</choose>
</if>
NexacroN_client_license.xml이 아닌 NexacroN_server_license.xml로 넣은 게 맞는지 확인하기
넥사크로에서 ui 수정한 후에 Generate > Application하고 Spring refresh하기
잘 안 될 땐 tomcat clean 해보고 브라우저 캐시 삭제해보기