最近觉得IDEA这个java开发工具挺不错的,于是尝试从MyEclipse转到IDEA来试试,用了才发现的确不错,代码提示和界面都用的挺爽的,于是便采用IDEA来开发java web项目,顺便记录一下IDEA搭建strust项目的过程。
step1:打开IDEA选择create New project选中如图所示
step2:配置tomcat服务器,点击Application server右侧的New->tomcat server,指定tomcat服务器的路径
step3:引入strust所依赖的jar包,这里有两种方法
第一种:选择Download直接Next,这时IDEA会自动从网上下载strust2所需的jar包
第二种:选择Use library使用本地的jar包,点击Create,并选择struts-2.3.16.3\apps\WEB-INF\lib目录下的所有jar包,点击ok即可
step4:点击next后,输入项目名称,指定项目路径,以及project sdk(jdk路径),点finish即可
step5:调整tomcat配置,点击右上角,配置server和deployment如下
step6:解决strust库未包含问题,选择File->project Structure...
step7:写代码测试
新建com.test.action包添加TestAction
package com.test.action; import com.opensymphony.xwork2.ActionSupport; public class TestAction extends ActionSupport{ @Override public String execute() throws Exception { return SUCCESS; } }修改strust.xml添加如下内容
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd"> <struts> <package name="test" namespace="/" extends="struts-default"> <action name="testaction" class="com.test.action.TestAction"> <result name="success"> /index.jsp </result> </action> </package> </struts>
好了,写完了,感觉有点罗嗦,纯手打,转载请注明出处
IDEA 搭建strust2开发环境,布布扣,bubuko.com
原文地址:http://blog.csdn.net/yang6816110/article/details/38587305