import React, { useState } from 'react'; import {Link, useNavigate} from 'react-router-dom'; import * as EgovNet from 'api/egovFetch'; import URL from 'constants/url'; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import Button from 'react-bootstrap/Button'; function Detail(){ const navigate = useNavigate(); const goToList = () => { navigate('/support/list/KCSC-QA'); }; const goToCreate = () => { navigate('/support/create/KCSC-QA'); }; return (
{/* */}
  • Home
  • 정보제공
  • 게시판명
{/* */}
{/* */}

게시판명

카테고리
설계기준 > 시설물편 > 건축 구조기준 > 건축물 설계하중
등록일자
2011-08-08 11:11:11
작성자
박성환
조회
100
첨부파일
file_name.hwp [3626] byte
[공지] jsp파일을 못찼습니다. 제목 뿌려주세요.
Q 안녕하세요 웹호스팅에 올렸더니 jsp파일에서 이런에러로그가 남았는데요 jsp파일을 못찾는것같습니다? xml을 수정해야하나요?
심각: Servlet.service() for servlet action threw exception
javax.servlet.ServletException: Could not get RequestDispatcher for [/WEB-INF/jsp/egovframework//main/main.jsp]: check that this file exists within your WAR
at org.springframework.web.servlet.view.InternalResourceView.renderMergedOutputModel(InternalResourceView.java:217)
A
  • {/*답변 처리중인경우*/} {/*질문 확인 후 답변을 처리중입니다.*/} {/*답변 달린경우*/} admin님의 답변 2011-08-08 12:33:33 심각: Servlet.service() for servlet action threw exception은 jsp파일을 열어서 보셔야합니다. javax.servlet.ServletException: Could not get RequestDispatcher for [/WEB-INF/jsp/egovframework//main/main.jsp]: check that this file exists within your WAR
{/* */} {/*
*/} {/*
*/}
{/* */}
  • chanjin, 2011-08-08 12:33:33 심각: Servlet.service() for servlet action threw exception은 jsp파일을 열어서 보셔야합니다.
    javax.servlet.ServletException: Could not get RequestDispatcher for [/WEB-INF/jsp/egovframework//main/main.jsp]: check that
    삭제
  • sunrise, 2011-08-07 11:11:11 tomcat서버를 재시동해보세요. 전 그렇게 하니깐 되던데요. 삭제
  • auto, 2011-08-07 11:11:11 제가 살펴볼께요 메일로 주세요. test@naver.com 삭제
{/* */}
); } export default Detail;