- 浏览: 31916 次
- 性别:
- 来自: 上海
最新评论
文章列表
网关查询
1)netstat -nr
2)route 这个在ubuntu server上实验貌似有问题。。。
IP固定:
为了永久的保存固定IP,需要通过命令设置,基本需要操作的有2个文件,总共4个步骤
1、编辑/etc/network/interfaces
2、编辑/etc/resolv.conf
3、重启网卡
4、重启计算机
具体内容:
步骤一中需要添加的代码(IP内容):
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.1.98
netmask 255.25 ...
1. 启动samba服务: sudo /etc/init.d/samba start
2. 停止samba服务: sudo /etc/init.d/samba stop
3. 重起samba服务: sudo /etc/init.d/samba restart
samba配置(/etc/samba/smb.conf):
1)在Windows系统中不用输入密码访问Linux共享目录
将文件中的内容做如下相应修改:
security=user 改为security=share
在文件结尾添加如下行:
[share]
comment=this is Linux share directory
p ...
一条命令即可:
sudo apt-get install openssh-server
确定ssh是否启动:
ps -e | grep ssh
<iframe name="playApplet" frameborder="0"></iframe>
<div style="display: none;"><a id="refreshApplet" href="/demoaid/jsp/demo2.jsp" target="playApplet" type="hidden">call</a></div>
点击了超链接就 ...
<APPLET ARCHIVE="demoApplet.jar" CODE="demo.DemoApp.class" width="600" height="400"></APPLET>
上述html位于war包下的jsp目录下,本来以为把这个jar包放在这个目录下就可以运行,结果是把这个jar包放到了war根目录下才可以了,调试了将近一天,直接调用class就没有成功过...
请高手出来赐教!
自己回答以下:这个路径还需要结合看当时页面执行的路径,由于我的jsp页面时从serv ...
<%
String strMsg = (String)request.getAttribute( "test ");
%>
<%=strMsg%>
一开始添加了注解webservlet一直不能访问,后来经过大师提醒,
需要修改web.xml的web-app属性如下,
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0"
...
信息: validateJarFile(D:\xj\workspace\webworktest\webapp\WEB-INF\lib\servlet-api-2.4.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class
分析:
jsp-api.jar和servlet-api.jar这两个包tomcat的common\lib已经有了,必须将\WEB-INF\lib\目录下的去掉,否则会冲突的,会引起tomcat启动正常,而页面却总是无内容显 ...
maven依赖搜索网站
- 博客分类:
- maven
http://search.maven.org/
http://www.mvnrepository.com/
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration> ...
1)创建普通应用项目:
mvn archetype:create -DgroupId=com -DartifactId=certusSimple
2)创建WEB项目:
mvn archetype:create -DgroupId=com -DartifactId=certusWeb -DarchetypeArtifactId=maven-arc hetype-webapp
命令说明:
archetype( 内建插件,他的create任务将建立项目骨架 ): archetype:create
groupId 项目的java包结构:com
artifactId 项目的名称:certusS ...
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd&q ...
http://mirrors.ibiblio.org/pub/mirrors/maven2/
C-v 查看下一屏M-v 查看上一屏C-l 定位光标
C-p上 C-n 下 C-b M-b左 C-f M-f右 C-a行首C-e行尾M-a句首M-e句尾M-<最开始M->最末尾
C-u 指定参数 比如: C-u 8 C-f 向前移动8个单位
C-g 终止命令
Backspace 删除光标前的一个字符C-d ...