开发工具为idea 摸索了半天 在知道怎么用
新建工程 准备写个ssh整合 建立完工程后如图

LoginAction代码如下

User代码如下

index.jsp代码如下

web.xml配置struts2
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>/index.jsp</welcome-file>
</welcome-file-list>
</web-app>
strus.xml配置文件
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="login" extends="struts-default">
<action name="login" class="com.xg.view.LoginAction">
<result name="success">/welcome.jsp</result>
<result name="error">/error.jsp</result>
</action>
</package>
</struts>
运行效果 输入 xugang 123 跳转到登陆成功页面
否则 跳转到 错误页面


本文详细介绍了如何使用IntelliJ IDEA开发工具,结合SSH框架和Struts2进行登录功能的实现,包括LoginAction代码、User类、index.jsp页面、web.xml和strus.xml配置文件的编写及运行效果。

被折叠的 条评论
为什么被折叠?



