在jbuilder的工程属性里找不到“include debug information”
解决时间 2021-05-11 15:35
- 提问者网友:杀手的诗
- 2021-05-10 23:36
在用jbuilder调试程序时,data watchs 中全部显示“cannot evaluate:no debug information"
我查阅资料说是工程属性里build标签下的“include debug information”没被选中
可是我把工程属性找遍了都没找到这个选项
我的jbuilder版本是2006
这个问题如何解决?
最佳答案
- 五星知识达人网友:由着我着迷
- 2021-05-10 23:47
jbuilder下struts开发示例 jbuilder下struts开发示例 1、 下载struts1.2.7版本,并解压,将解压后的文件目录struts1.2.7拷贝到jbuilder2005安装目录的thirdparty目录下 2、 新建strutsLogon工程 3、 若没有配置服务器,则配置tomcat5.5服务器 4、 配置struts库, Toolsà configure à libraries进入Configure Libraies对话框,在左加列表中,选中User Home,按new按钮,进入New library向导,在name输入框中输入struts1.2.7,按OK按钮,回到Configure Libraies对话框,按add命令,找到thirdparty/struts1.2.7/lib目录,加入struts的9个jar文件 字串6 5、 为工程选择服务器,右键点击工程名,进入工程属性对话框,在左边的树中,选中server 项,在右边,选中single server for all service project,并在下拉列表中,选择tomcat5.0 6、 在工程中加入struts库 进入工程属性对话框,左边选Path,右边按required libraries标签,再按add按钮,进入add to project classpath窗口,按libraries标签,选中struts1.2.7,按OK按钮,返回属性对话框,按OK按钮. 7、 创建struts web应用,file à new进入Object Gallery,在左边列表中,选中Web,在右边的选项中,选中Web Module(war),进入web module向导一,选中create empty Web Module,按next按钮进入向导二窗口,输入web应用名为strutsLogon,在builde web archive下选,when build module only,其它可用默认选项,按next按钮,进入向导三窗口,在jsp/servlet frameworks下的复选框中,选struts1.2.7,按finish命令,结束web应用的创建,注意观察,在web-inf下增加了一些tld文件,并有struts-config.xml文件,同时注意web.xml关于servlet ActionServlet的配置,同时在lib下有struts1.2.7的9个jar文件 8、 创建logon.jsp文件 9、 创建actionForm: file à new进入Object Gallery,在左边列表中,选中Web,在右边的选项中,选中Action form, 字串1 输入ActionForm名为LogonActionForm,包名为空,其它取默认选项,按next进入下一窗口,选Add from jsp,在弹出窗口中,选中logon.jsp,按OK回到前一窗口,按next进入下一窗口,按finish完成ActionForm创建 观观察struts-config.xml文件,应有如下关logonActionForm的配置: <form-beans> <form-bean name="logonActionForm" type="LogonActionForm" /> </form-beans> 10、 创建Action, file à new进入Object Gallery,在左边列表中,选中Web,在右边的选项中,选中Action , 输入Action名为LogonAction,包名为空,其它取默认选项,按next进入下一窗口 在formBean name中选:LogonFormbean 在scope中,选request 在Validate formbean中:选true 在input jsp中,选logon.jsp 按finish结束Action创建 观察struts-config.xml文件,应有关于LogonAction的如下配置 字串8 <action-mappings> <action input="/logon.jsp" name="logonActionForm" pat
我要举报
大家都在看
推荐资讯