在IDEA上跑struts1框架

在IDEA上跑struts1框架

前言

最近学校开设了JAVA_EE课程,课上讲到了struts1框架,并且需要做相关试验。由于习惯了使用IDEA,便尝试在IDEA上部署struts1框架。

环境

  • windows10 21H2
  • IntelliJ IDEA 2022.1.4 (Ultimate Edition)

ps: 如果是在校学生的话,IDEA专业版可以通过学校邮箱申请

  • JDK1.8
  • Tomcat 9.0.65
  • maven3.8.5

步骤

IDEA上没有struts1的相关模板,所以需要在Java Enterprise项目的基础上进行配置

总体步骤:

  1. 配置Java Enterprise项目
  2. 在前者基础上,配置struts1

话不多说,直接开整

配置Java Enterprise项目

  • 新建Java Enterprise项目
  1. 选择生成器“Java Enterprise”
  2. 配置基础信息(项目名称,路径,这个因人而异)
  3. 选择模板Web应用程序
  4. 选择Tomcat服务器
  5. 选择JDK(通常选择JDK1.8)
  6. 点击下一步
  • 配置依赖
  1. 选择版本Java EE 8
  2. 在规范中勾选Web Profile
  3. 点击创建
  • 运行
  1. 等待依赖同步完成(在下栏中的构建可查询进度)
  2. 点击运行
  3. 若配置无误,浏览器会弹出此页面

配置struts1

以上配置无误后,可继续配置struts1。

包的导入

<!-- https://mvnrepository.com/artifact/struts/struts -->
        <dependency>
            <groupId>struts</groupId>
            <artifactId>struts</artifactId>
            <version>1.2.9</version>
        </dependency>

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-beans>
  <global-exceptions />
  <global-forwards>
      
  </global-forwards>
    <action-mappings>
        
    </action-mappings>
</struts-config>

样例

//TODO

常见问题

//TODO

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » 在IDEA上跑struts1框架