`
maosuhan
  • 浏览: 112401 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论

关于netbeans6.7 中tomcat的配置

阅读更多
我用的操作系统是win7。tomcat版本为6.0.20,netbeans版本为6.7。
先是配置tomcat,那些classpath,path我就不讲了。当然还得在netbeans中激活一下tomcat,在工具--服务器里。
但是当我部署的时候有一个问题,它让我输入验证的用户名与密码。上网查了一些资料。
我用的tomcat是独立的,在tomcat目录下的conf\tomcat-user.xml.
<?xml version='1.0' encoding='utf-8'?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<tomcat-users>
<!--
  <role rolename="tomcat"/>

  <role rolename="role1"/>

  <user username="tomcat" password="tomcat" roles="tomcat"/>
 <user username="both" password="tomcat" roles="tomcat,role1"/>
  <user username="role1" password="tomcat" roles="role1"/>
-->
</tomcat-users>



发现role中没有admin与manager,于是添加进这两个角色,再依葫芦画瓢定义自己的用户名与密码。记得要把<tomcat-user>内的注释删掉。
<?xml version='1.0' encoding='utf-8'?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<tomcat-users>

  <role rolename="tomcat"/>
<role rolename="admin"/>
  <role rolename="role1"/>
<role rolename="manager"/>
 <user username="tomcat" password="tomcat" roles="tomcat"/>  <user username="name" password="password" roles="manager,admin"/> <user username="both" password="tomcat" roles="tomcat,role1"/>
  <user username="role1" password="tomcat" roles="role1"/>

</tomcat-users>


接着在netbeans中的工具--服务器--tomcat6.0中把自己刚才设的用户名与密码输进去,这样就就不用每次都输密码了。

0
1
分享到:
评论
2 楼 2001430 2010-10-13  
没用!!!
要在.netbean目录下的tomcat的conf下的tomcat-user.xml下配置。
1 楼 jklmnlkevin 2010-04-17  
我也为这个问题弄了很久,后才终于弄好了,原来如果更改了tomcat的设置的话,必须重启一下tomcat,新的设置才会生效。这点很无语。

相关推荐

    struts2 for netbeans 6.7

    在Struts2 for NetBeans 6.7这个主题中,我们可以深入探讨以下几个关键知识点: 1. **Struts2框架核心概念**:Struts2的核心组件包括Action、Result、Interceptor和ValueStack。Action是业务逻辑的载体,Result负责...

    netbeans下配置tomcat服务器图文讲解

    本篇文章将详细讲解如何在NetBeans中配置Tomcat服务器,以帮助开发者高效地进行Java Web项目开发。 首先,我们需要了解NetBeans和Tomcat的基本概念。NetBeans是一款开源的、跨平台的Java IDE,它提供了编写、调试和...

    icefaces1.8 for netbeans6.7beta

    标题"icefaces1.8 for netbeans6.7beta"揭示了我们正在讨论的是一个专门针对NetBeans 6.7 Beta版本的IceFaces 1.8集成。IceFaces是一个开放源码的JavaServer Faces (JSF)组件库,它专注于提供富互联网应用程序(RIA...

    netbeans6.7用的struts2插件

    标题提及的"NetBeans 6.7用的Struts2插件"意味着在NetBeans 6.7版本中,开发者可以安装这些插件来提升Struts2框架的开发效率和便利性。 描述中提到的"有两个版本,Struts2.0和2.1",这代表了Struts2的不同迭代版本...

    NetBeansIDE 6.7的安装与使用

    下面是关于 NetBeans IDE 6.7 的安装和使用的知识点总结: 一、JDK 的下载与安装 * 在安装 NetBeans IDE 之前,需要先安装好 JDK(Java Development Kit) * 可以到 Sun 公司的官方网站下载 JDK6,网址:...

    netbeans下配置tomcat服务器图文讲解.rar

    1:在netbeans 左上角右击服务器,添加服务器。 2:选择要添加的服务器的版本(这里选择Tomcat5.5) 3:准备Tomcat 的服务器文件(一般要选择解压宿的,免安装版本) 4:这一步很简单,就不说了, 5:看看下面...

    netbeans 7 下配置tomcat服务器图文讲解

    在IT领域,NetBeans与Tomcat的结合是Java开发者中非常流行的一种开发环境配置方式,尤其是在Web应用开发中。本文将基于给定的文件信息,深入解析如何在NetBeans 7下配置Tomcat服务器,这一过程不仅对于初学者来说至...

    NetBeans+Tomcat+MySQL配置

    ### NetBeans、Tomcat与MySQL配置详解 #### Tomcat安装及配置 ...以上步骤和代码示例详细展示了如何在NetBeans环境中配置和使用Tomcat与MySQL,从服务器安装到数据库操作,为开发者提供了全面的指导。

    netbeans 下配置tomcat服务器图文讲解

    本文将详细讲解如何在NetBeans中配置Tomcat服务器,以便于开发、测试和部署Java Web项目。 首先,打开NetBeans IDE。在IDE的左侧工具栏中,你会看到"服务"面板。在这个面板中,你可以管理数据库、服务器和其他服务...

    MultiLingual in NetBeans 6.7-开源

    在这个小演示中,我展示了如何使用所选语言重新启动 NetBeans IDE 6.7。 在 NetBeans 6.7 中有 18 种语言可供您下载 IDE。 只需稍加努力,您就可以将这种语言罐用于您自己的 rcp 程序。

    在Netbeans下配置Tomcat数据源

    在NetBeans中配置Tomcat数据源是开发Java Web应用程序时必不可少的步骤,特别是当你需要连接到数据库进行数据操作时。NetBeans是一个强大的集成开发环境(IDE),它支持多种服务器,包括Tomcat。以下是一个详细的...

    netbeans配置Tomcat

    netbeans配置Tomcat方法,配置 部署 启动

    5-已安装Netbeans如何添加Tomcat服务器-Eclipse中如何添加服务器

    "在 Netbeans 和 Eclipse 中添加 Tomcat 服务器" 在 Java web 开发中,服务器扮演着非常重要的角色,是 web 程序的载体,提供 web 程序运行的环境和管理 web 程序组件(如 Servlet)的容器。Tomcat 服务器是最流行...

    netbeans字体配置文件.netbeans字体配置文件

    netbeans字体配置文件.netbeans字体配置文件netbeans字体配置文件.netbeans字体配置文件netbeans字体配置文件.netbeans字体配置文件netbeans字体配置文件.netbeans字体配置文件netbeans字体配置文件.netbeans字体...

    jdk+tomcat+myeclipse+netbeans+svn的配置

    - 在MyEclipse中,通过`Window &gt; Preferences &gt; MyEclipse Enterprise Workbench &gt; Servers &gt; Tomcat &gt; Tomcat 6.x`配置Tomcat路径,确保MyEclipse能识别和管理Tomcat服务器。 4. **NetBeans安装与SVN使用** - ...

    Netbeans 6.8 安装后配置记录

    在压缩包中提到的`fontconfig.properties`文件,可能与NetBeans的字体配置相关。在NetBeans中,用户可以自定义编辑器中的字体、字号以及颜色主题。打开这个文件,可以调整代码显示的字体类型、大小,以及高亮颜色,...

    Ubuntu配置Netbeans8.2

    4. 配置环境变量:在安装 Netbeans 之后,我们需要将 Netbeans 的可执行文件路径添加到环境变量中,以便在命令行中可以直接使用 Netbeans。 5. 启动 Netbeans:在配置环境变量之后,我们可以在命令行中输入 Netbeans...

    NetBeans7.0.1开发Android的配置

    本文将详细介绍如何在 NetBeans 7.0.1 中配置 Android 开发环境。 #### 二、Android SDK 配置 1. **下载与安装 Android SDK** - 下载 Android SDK 并安装到指定位置,例如 `D:\android-sdk-windows`。 - 打开 `...

    NetBeans 6.0 安装和配置Ruby Support

    【NetBeans 6.0 安装和配置Ruby Support】主要涉及的是在NetBeans IDE 6.0中集成Ruby编程语言及其相关工具的过程。以下是详细的知识点解释: 1. **下载Ruby支持**: - 如果你还没有安装NetBeans 6.0 IDE,你需要...

Global site tag (gtag.js) - Google Analytics