struts中的问题 The server encountered an internal error (No action instance for path /person could be created)

hxl123789 2008-05-06 02:45:36
struts.config.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN" "http://struts.apache.org/dtds/struts-config_1_2.dtd">

<struts-config>
<data-sources />
<form-beans >
<form-bean name="personForm" type="com.hxl.ssh.struts.form.PersonForm" />

</form-beans>

<global-exceptions />
<global-forwards />
<action-mappings >
<action
attribute="personForm"
input="/form/person.jsp"
name="personForm"
parameter="status"
path="/person"
scope="request"
type="org.springframework.web.struts.DelegatingRequestProcessor" />

</action-mappings>

<message-resources parameter="com.hxl.ssh.struts.ApplicationResources" />
<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
<set-property property="contextConfigLocation" value="/WEB-INF/classes/applicationContext.xml" />
</plug-in>
</struts-config>

register.jsp代码


<%@ page language="java" pageEncoding="gbk"%>

<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
<head>
<html:base />

<title>register.jsp</title>



</head>

<body>
<center>

<form action="person.do" method="post">
用户名:<input type="text" name="name"><br>
密 码:<input type="password" name="password"><br>
<input type="hidden" name="status" value="insert">
<input type="submit" value="注册">
</form>
</center>
</body>
</html:html>
...全文
760 11 打赏 收藏 转发到动态 举报
写回复
用AI写文章
11 条回复
切换为时间正序
请发表友善的回复…
发表回复
hxl123789 2008-05-06
  • 打赏
  • 举报
回复
问题解决,谢谢各位的帮助,以后我会细心的

type="org.springframework.web.struts.DelegatingRequestProcessor" />

————》type="org.springframework.web.struts.DelegatingRequestProxy" />
hxl123789 2008-05-06
  • 打赏
  • 举报
回复
[Quote=引用 9 楼 vsfigo 的回复:]
应该是你不细心那里写错了 再好好看看吧
比如:你看你注入对了没有
[/Quote]

谢谢,你的提醒
vsfigo 2008-05-06
  • 打赏
  • 举报
回复
应该是你不细心那里写错了 再好好看看吧
比如:你看你注入对了没有
hxl123789 2008-05-06
  • 打赏
  • 举报
回复
[Quote=引用 6 楼 qiuqiupeng 的回复:]
没有action的配置,缺少action-name和action-class
你在struts-config.xml配置文件加入
[/Quote]

请问在哪里加呢
hxl123789 2008-05-06
  • 打赏
  • 举报
回复
applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">


<bean id="dataSourse"
class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName"
value="com.mysql.jdbc.Driver">
</property>
<property name="url" value="jdbc:mysql://localhost:3306/mldn"></property>
<property name="username" value="root"></property>
<property name="password" value="mysqladmin"></property>
</bean>
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource">
<ref bean="dataSourse" />
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">
org.hibernate.dialect.MySQLDialect
</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
<property name="mappingResources">
<list>
<value>org/hxl/ssh/pojo/Person.hbm.xml</value>
</list>
</property>
</bean>
<bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate">
<property name="sessionFactory" >
<ref bean="sessionFactory"/>
</property>
</bean>
<bean id="personDAO" class="org.hxl.ssh.dao.impl.PersonDAOImpl">
<property name="hibernateTemplate">
<ref bean="hibernateTemplate"/>
</property>
</bean>
<bean name="/person" class="com.hxl.ssh.struts.action.PersonAction">
<property name="personDAO">
<ref bean="personDAO"/>
</property>
</bean>
</beans>
qiuqiupeng 2008-05-06
  • 打赏
  • 举报
回复
没有action的配置,缺少action-name和action-class
你在struts-config.xml配置文件加入
gongyali2005 2008-05-06
  • 打赏
  • 举报
回复
楼上说的对,在APPLICATIONCONTEXT.XML文件里配制一下.
vsfigo 2008-05-06
  • 打赏
  • 举报
回复
你是ssh框架吧? 那你spring的AplicationContext.xml的配置文件呢?
发出来看看
hxl123789 2008-05-06
  • 打赏
  • 举报
回复
路径对,
hxl123789 2008-05-06
  • 打赏
  • 举报
回复
HTTP Status 500 - No action instance for path /person could be created

type Status report

message No action instance for path /person could be created

description The server encountered an internal error (No action instance for path /person could be created) that prevented it from fulfilling this request.
Apache Tomcat/5.5.20
yougucao379548695 2008-05-06
  • 打赏
  • 举报
回复
配置文件路径对不?

81,115

社区成员

发帖
与我相关
我的任务
社区描述
Java Web 开发
社区管理员
  • Web 开发社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧