springmvc, mybatis, mysql을 도구 플랫폼으로 사용해 보세요.
로컬 Mac 노트북에서는 정상적으로 실행되는데, 서버에 패키지를 올려놓고 Tomcat을 시작하면 오류가 발생합니다. 수업을 찾을 수 없습니다.
파일 디렉터리:
구현 요구 사항: 문서를 업로드하고 데이터베이스에 기록합니다. DocFile 클래스를 자체적으로 생성했습니다. 해당 매퍼 파일을 생성하고 SQL 문을 작성합니다.
mapper.xml의 네임스페이스는 DocFileDao를 가리킵니다.
<mapper namespace="com.bbc_kit.operation.dao.DocFileDao"><!-- namespace 需要和dao层的"包名+接口名"一致 --><resultMap type="com.bbc_kit.operation.entities.DocFile" id="DocFileResult"><id property="docFileId" column="docFileId" jdbcType="VARCHAR"/><result property="docFileType" column="docFileType" jdbcType="VARCHAR"/><result property="docFileName" column="docFileName" jdbcType="VARCHAR"/><result property="docFilePath" column="docFilePath" jdbcType="VARCHAR"/><result property="created_by" column="created_by" jdbcType="VARCHAR"/><result property="date_created" column="date_created" jdbcType="DATE"/><result property="updated_by" column="updated_by" jdbcType="VARCHAR"/><result property="date_updated" column="date_updated" jdbcType="DATE"/><result property="valiable" column="valiable" jdbcType="VARCHAR"/></resultMap><select id="queryOptDocFile" parameterType="HashMap" resultMap="DocFileResult">select * from t_docfile where docFileType=#{docFileType} and valiable='Y'</select><update id="updateInvalidDocFile" parameterType="String" >update t_docfile set valiable='N' where docFileId=#{docFileId}</update><select id="getDocFile" parameterType="String" resultType="DocFile">select * from t_docfile where docFileId=#{docFileId}</select>
하지만 시작한 후 설명할 수 없는 이유로 DocFile 클래스를 찾을 수 없다고 보고했습니다. 그리고 프롬프트된 경로에서 war 패키지 뒤에 느낌표가 있습니다.
나중에 알고 보니 매퍼 파일의 클래스 참조에
<select id="getDocFile" parameterType="String" resultType="DocFile">select * from t_docfile where docFileId=#{docFileId}</select>
를 추가하지 않고
<select id="getDocFile" parameterType="String" resultType="com.bbc_kit.operation.entities.DocFile">select * from t_docfile where docFileId=#{docFileId}</select>
로 변경한 후 패키징하고 업로드하고 다시 시작했습니다. 그리고 그것은 정상이었습니다. 로컬 환경에서 오류가 보고되지 않는 이유는 환경 내의 일부 구성이 혼동되어 표시되지 않기 때문입니다.
위 내용은 Tomcat이 war 패키지를 로드할 때 오류가 발생하면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!