struts 입문 시 오류

1254 단어 jspbeanxmlstruts

error 1: No action instance for path /login could be created
error 2: Error creating form bean of class LoginForm
 
이 오류 가 발생 한 원인 은 일반적으로 struts - config. xml 에 설정 이 올 바 르 지 않 기 때 문 입 니 다.
 
첫 번 째 오류:
<action-mappings>
		<action name="loginForm" path="/login"  type="com.bjtu.action.LoginAction">
			<forward name="login" path="/login.jsp"></forward>
			<forward name="success" path="/jsp/login_success.jsp"></forward>
			<forward name="failure" path="/jsp/login_failure.jsp"></forward>
		</action>
</action-mappings>

 일반 오류: < action type = "" >, 안에 있 는 type 을 다음 과 같이 쓰 십시오. action 의 모든 이름, 즉 package 와 클래스 이름 을 포함 합 니 다.
 
두 번 째 오류:
<form-beans>
		<form-bean name="loginForm" type="com.bjtu.form.LoginForm"></form-bean>
</form-beans>

  type 에 올 바른 설정 이 없다 는 것 도 같은 이치 입 니 다.이름 을 모두 쓰 면 됩 니 다.
 
 
부족 한 점 은 지적 하여 바로잡아 주시 기 바 랍 니 다.
 
No action instance for path /n could be created?

좋은 웹페이지 즐겨찾기