struts2配置默认首页】的更多相关文章

配置struts2 默认欢迎页的几种办法: 1.首先需要明确的是struts过滤器配置映射的模式是路径匹配还是扩展匹配,如果url-pattern配置为/*,如果不做特殊处理,是不会转到welcome-file-list设置的文件的.这种情况,有两种办法解决默认转向:a.一种是在struts.xml中定义一个默认的action,设置<default-action-ref name="index"></default-action-ref><action n…
在默认情况下,我们一般希望.当我们在浏览器中输入127.0.0.1:8080/project_name时候跳到项目的首页,那么在struts中我们这么设置呢?光加上<default-action-ref name="user" />是不够的,由于struts2默认是index.jsp为首页,所以我们把index.jsp删除了即可了,struts2从web.xml中找到项目的入口index.jsp可是index.jsp不存在了,那么<default-action-ref…
需求: 自己有个域名,原来直接扔在了服务器的文件夹里(根据客服人员指导),自己玩了一遍nginx的安装部署等操作之后,域名的指向发生了改变,到了nginx成功的界面. 自己抱着极大的好奇心来配置nginx,已达到我能访问到我的主页的样子,当然啦.做个域名主页对我来说最主要的作用就是学(装)习(逼). 解决方案: google找到了其中的方法,大概就是修改nginx的配置文件了,让其index指向特定目录下的index.html等主页文件. 先开始一顿配置nginx的操作: 1,找到nginx.c…
作用:当一个请求无法匹配到任何一个struts的action时,可以配置一个默认Action 例如:当请求路径不正确时,跳转到一个404.jsp页面 <package extends="struts-default" name="default" namespace="/"> <default-action-ref name="NoAction"></default-action-ref>…
操作系统:CentOS 6.5 Apache默认主页为index.html,如果要修改为index.php或其它,需要修改httpd.conf文件 用vim或其它编辑器打开httpd.conf 在上图中的DirectoryIndex index.html后增加index.php 即如下图所示: 重启Apache,即可.…
配置方法如下:1.首先需要打开Apache的配置文件httpd.conf文件,使用一般的编辑器或者记事本打开均可.2.找到或者搜索到如下字段:<IfModule dir_module> DirectoryIndex index.php index.php3 index.html index.htm </IfModule>3.将自己需要设置的默认首页的名称写到后面保存即可,如IfModule dir_module> DirectoryIndex index.php index.…
1.当访问的Action不存在时,页面会显示错误信息,可以通过配置默认Action处理用户异常的操作:2.配置方法:    在struts.xml文件中的<package>下添加如下内容:        <default-action-ref name="index"></default-action-ref>    其中index为默认Action的name属性值:3.配置默认Action后,相应的namespace下不存在要访问的Action时,…
一想到默认首页,很多人可能首先想到的是在web.xml如下配置: <welcome-file-list> <welcome-file>xxxx/xxx</welcome-file> </welcome-file-list> 但是不好意思,不可以.最终的解决方法,在spring-mvc.xml文件中加入以下配置,测试问题解决(需要删除webapp下边的index.jsp文件,否则tomcat容器环境下依然会访问到这个文件) <mvc:view-contr…
struts开发流程 1,引入jar包 2,配置web.xml 3,开发action类 4,配置struts.xml   版本: 2.3 引入jar文件 commons-fileupload-1.2.2.jar   [文件上传相关包] commons-io-2.0.1.jar struts2-core-2.3.4.1.jar           [struts2核心功能包] xwork-core-2.3.4.1.jar           [Xwork核心包] ognl-3.0.5.jar  …
  STRUTS2配置动态页面 CreateTime--2017年5月11日09:00:31Author:Marydon 1.struts配置 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://st…
1. web.xml 此文件的配置可以参看struts2的示例文档 <filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class> </filter> <filter-mapping> <filte…
一.问题描述 这里所谓的默认首页,是指在访问项目根目录时(如 http://localhost:8080/zhx-web/ )展示的页面,通过在web.xml里配置 <welcome-file-list> 实现.分静态页面和动态页面两种: 二.静态页面 对于静态页面,只需要在web.xml里添加如下内容即可.这时访问上述链接时得到的就是download.jsp页面的静态内容 <welcome-file-list> <welcome-file>/WEB-INF/views…
默认首页的配置: 第一种:直接修改apache服务器的配置文件./conf/httpd.conf中的DirectoryIndex,如:(项目web以index.php为首页) <IfModule dir_module>                        DirectoryIndex index.html index.php                  </IfModule> 第二种:apache服务器的配置文件./conf/httpd.conf中Directory…
之前自己写的springmvc 默认首页都是偷懒方式: web.xml 中定义的默认首页: <welcome-file-list> <welcome-file>index.html</welcome-file> </welcome-file-list> 然后在index.html 中跳转到springmvc 的动态链接 这样地址上就有 http://www.xxx.com/index/home 今天客户不想要/index/home.问题:welcome-fi…
3.1 Struts2执行过程    1.获取Struts2资源    2.在应用程序中导入Struts2的类库    3.在web.xml中配置StrutsPrepareAndExecuteFilter    4.编写Action类进行配置    5.配置返回结果与物理视图资源的关系    6.编写结果视图            web.xml <filter> <filter-name>struts2</filter-name> <filter-class&g…
原thinkphp的默认首页为:Home/index,如果想更改,则需要配置: 在Common/config之下 'DEFAULT_CONTROLLER' => 'Admin', // 更改后默认控制器名称'DEFAULT_ACTION' => 'index', //更改后默认操作方法 这里假设更改默认首页为:Admin/index…
电影网站:www.aikan66.com 项目网站:www.aikan66.com游戏网站:www.aikan66.com图片网站:www.aikan66.com书籍网站:www.aikan66.com学习网站:www.aikan66.comJava网站:www.aikan66.comiOS网站:www.aikan66.com ---- 1.下载Struts2的jar包下载地址:http://archive.apache.org/dist/struts/binaries/我用的是struts-2…
关于web.xml中的<welcome-file-list>中的默认首页文件 先看我的配置文件: <welcome-file-list> <welcome-file>index.html</welcome-file> </welcome-file-list> 很普通,没有任何问题.但是访问http://localhost/的时候,不会去找index.html,出现404错误. 如果手工输入http://localhost/index.html又可…
web.xml配置: <servlet-mapping> <servlet-name>dispatcher</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> 不要设置为*.do之类,这样只会拦截.do后缀名文件,设置为/,可以拦截所有请求.可以单独给页面设置后缀.如下java代码 然后java代码: @Controller public class Index…
转自:http://blog.sina.com.cn/s/blog_82f01d350101echs.html 如何使用struts2拦截器,或者自定义拦截器.特别注意,在使用拦截器的时候,在Action里面必须最后一定要引用struts2自带的拦截器缺省堆栈defaultStack,如下(这里我是引用了struts2自带的checkbox拦截器):<interceptor-ref name="checkbox">  <param name="uncheck…
Tomcat 配置默认应用,即只输入域名或ip,不用输入项目名称: <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true"> <Context path="/" docBase="nono-admin" /> </Host> path 说明你访问的地址 d…
导读:前面总体的介绍了一下SSH框架,那么作为Struts这一支,具体是怎么配置的呢?本篇博客则主要是以自己做过的实例中的登录一条线,简单介绍一下struts2的配置,如有不妥之处,还请大家多提点提点! 一.Struts2介绍 当Web容器收到 请求(HttpServletRequest)它将请求传递给一个标准的的过滤链包括(ActionContextCleanUp)过滤器,然后经过Other filters(SiteMesh ,etc),接下来需要调用FilterDispatcher核心控制器…
有些人使用IDEA开发Grails,开发阶段使用Grails自带的默认首页可以方便我们开发,但是开发结束后想要修改默认的首页,如何修改呢? 1.打开grails-app 文件下conf下的UrlMappings.groovy可以看到如下 class UrlMappings { static mappings = { "/$controller/$action?/$id?"{ constraints { // apply constraints here } } "/"…
原创文章,转载请注明:MyEclipse下Struts2配置使用和Ajax.JSON的配合  By Lucio.Yang 新手,初学Struts2的配置,同时尝试与Ajax通过JSON交互.首先介绍MyEclipse下Struts2的配置. 1.Struts2的配置 右键项目,MyEclips->project facets->install apache struts(2.x)facets URL pattern我选择了*.action,libraries只选择了core 1.1撰写acti…
update-alternatives 命令用于配置默认程序,版本切换 1.display 命令,查看命令链接信息 update-alternatives --display name 2.install 命令,增加命令链接 update-alternatives --install link name path priority link:链接原目录 name:链接符名称 path:链接新目录 priority:优先级 3.remove 命令,删除命令链接 update-alternative…
在你安装后的Apache目录下,有一个conf目录,在这个目录里,有一个"httpd.conf"文件.我们要做的,就是修改这个文件. 在这个文件里,凡是以"#"开头的每一行,都是无效的,如果你想让你的设置起作用,就要把行首的"#"去掉. 找到 DirectoryIndex 这段.把它改成DirectoryIndex index.php index.Html index.html 这样,你的网站目录的默认首页是 index.php, 如果没有ind…
** Web.xml配置** <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/…
修改禅道默认首页元素及展示 by:授客 QQ:1033553122 测试环境: 禅道项目管理软件ZenTaoPMS.9.5.1.win64 需求描述 如下,安装禅道后访问默认首页,展示如下,我们希望它和公司.项目更“和谐”一些 解决方案 (开源版为例) 进入禅道安装目录/htdocs/目录,备份index.php后修改index.php文件 找到 $lang->cn->title    = '欢迎使用禅道集成运行环境!'; 改成你要的名称,比如 $lang->cn->title  …
Confluence 6 配置默认语言使用的界面. https://www.cwiki.us/display/CONFLUENCEWIKI/Choosing+a+Default+Language…
Apache配置默认主页 进入Apache的conf目录 打开httpd.conf文件输入: 在文件末位添加: <Directory "F:/www_php/blog_com/my_blog"> Options  Indexes FollowSymLinks Includes AllowOverride None Order allow,deny Allow from all DirectoryIndex blog_index.php default.php index.h…