WEB-INF/classes/struts.properties 下的struts.properties 文件没有是怎么回事

 我来答
真知名
2010-12-29
知道答主
回答量:3
采纳率:0%
帮助的人:0
展开全部
properties是静态资源文本文件 这个得自己编写 不存在有没有 如果用eclipse写的话是自动生成一个文本文件在你打的包的下面 里面内容还要自己写的
Storm代理
2023-08-29 广告
StormProxies是全球大数据IP资源服务商,其住宅代理网络由真实的家庭住宅IP组成,可为企业或个人提供满足各种场景的代理产品。点击免费测试(注册即送1G流量)StormProxies有哪些优势?1、IP+端口提取形式,不限带宽,IP... 点击进入详情页
本回答由Storm代理提供
百度网友6cadfd5
2010-12-29 · TA获得超过127个赞
知道答主
回答量:78
采纳率:0%
帮助的人:67万
展开全部
这个文件是要自己添加的,直接部署是没有的,自己到别的项目拷一个就好了,不过没有也没关系,会按默认的配置运行的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
aibxxkm
推荐于2016-08-04 · TA获得超过487个赞
知道答主
回答量:374
采纳率:0%
帮助的人:286万
展开全部
第一步,安装tomcat6.jdk1.6.(这是我的环境,应该不是必须的)
第二步,index.html,作用是跳转到helloworld.action,代码如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<META HTTP-EQUIV="Refresh" CONTENT="0;URL=example/HelloWorld.action">
</head>

<body>
<p>Loading ...</p>
</body>
</html>
第三步,example目录下的HelloWorld.jsp,代码如下:
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title><s:text name="HelloWorld.message"/></title>
</head>

<body>
<h2><s:property value="message"/></h2>

<h3>Languages</h3>
<ul>
<li>
<s:url id="url" action="HelloWorld">
<s:param name="request_locale">en</s:param>
</s:url>
<s:a href="%">English</s:a>
</li>
<li>
<s:url id="url" action="HelloWorld">
<s:param name="request_locale">es</s:param>
</s:url>
<s:a href="%">Espanol</s:a>
</li>
</ul>

</body>
</html>
第四步,example包下的java原文件HelloWorld.java,代码如下:
package example;

/**
* <code>Set welcome message.</code>
*/
public class HelloWorld extends ExampleSupport {

public String execute() throws Exception {
setMessage(getText(MESSAGE));
return SUCCESS;
}

/**
* Provide default valuie for Message property.
*/
public static final String MESSAGE = "HelloWorld.message";

/**
* Field for Message property.
*/
private String message;

/**
* Return Message property.
*
* @return Message property
*/
public String getMessage() {
return message;
}

/**
* Set Message property.
*
* @param message Text to display on HelloWorld page.
*/
public void setMessage(String message) {
this.message = message;
}
}
第五步,example包下的java文件ExampleSupport.java.代码如下:
package example;

import com.opensymphony.xwork2.ActionSupport;

/**
* Base Action class for the Tutorial package.
*/
public class ExampleSupport extends ActionSupport {
}
第六步,WEB-INF下的web.xml,代码如下:
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_9" version="2.4" xmlns="" xmlns:xsi="" xsi:schemaLocation=" ">

<display-name>Struts Blank</display-name>

<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.html</welcome-file>
</welcome-file-list>

</web-app>
第七步,WEB-INF/classes目录下的struts.xml,代码如下:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"">

<struts>

<constant name="struts.enable.DynamicMethodInvocation" value="false" />
<constant name="struts.devMode" value="false" />

<include file="example.xml"/>

<!-- Add packages here -->

</struts>
第八步,WEB-INF/classes目录下的example.xml,代码如下:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"">

<struts>

<package name="example" namespace="/example" extends="struts-default">

<action name="HelloWorld" class="example.HelloWorld">
<result>/example/HelloWorld.jsp</result>
</action>
<!-- Add actions here -->
</package>
</struts>
第九步,WEB-INF/classes/example目录下的package.properties,代码就一句:
HelloWorld.message= Struts is up and running ...
第十步,WEB-INF/classes/example目录下的package_es.properties,西班牙问的,代码也就一句:
HelloWorld.message= �truts est?bien! ...

结束.好累.给分.多给.谢谢
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式