`
文章列表
问题: 1、eclipse中配置好tomcat服务器后,启动tomcat查看控制台信息显示启动成功, 但访问tomcat首页报404异常 2、而从tomcat/bin目录中启动后,就能够正常访问首页,由此分析应该是eclipse配置错误 解决方案: 双击Server中配置的Tomcat服务器会弹出如下界面: 在Server Locations配置中选择第二个选项,use tomcat installation ,保存,重新启动Tomcat服务,访问成功 注意:需要移除tomcat里的所有项目,并执行Clean操作,Server Locations才能变成可编辑状态。 这个问题遇到过两次 ...
项目启动报错: DispatcherServlet.. processing GET request for [/] BeanNameUrlHandlerMapping - No handler mapping found fo [/] Spring配置文件添加 <bean id="handlerAdapter" class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">         <property name=&qu ...
eclipse.ini 是配置eclipse 内存分配之类的配置文件,要找到该文件:right-click on the Eclipse Application icon and select "Show Package Contents", then double-click on the "Contents" folder and then double-click on the "MacOS" folder, the home of eclip ...
httpd: Could not reliably determine the server's fully qualified domain name, using Jagos-MBP.local for ServerName 修改httpd.conf中ServerName localhost:80 (13)Permission denied: make_sock: could not bind to address [::]:80 (13)Permission denied: make_sock: could not bind to address 0.0.0.0:80 上面是权限问题,用 ...

Git log 查看

    博客分类:
  • Git
查看提交历史 $git log 常用 -p 选项展开显示每次提交的内容差异,用 -2 则仅显示最近的两次更新. --stat,仅显示简要的增改行数统计. 选项 说明 -p 按补丁格式显示每个更新之间的差异。 --stat 显示每次更新的文件修改统计信息。 --shortstat 只显示 --stat 中最后的行数修改添加移除统计。 --name-only 仅在提交信息后显示已修改的文件清单。 --name-status 显示新增、修改、删除的文件清单。 --abbrev-commit 仅显示 SHA-1 的前几个字符,而非所有的 40 个字符。 --relative-date 使用较短的相对时 ...

Linux notes

安装所有开发工具包,省事呀^_^ yum groupinstall "Development Tools"
想到就记录下,又臭又长的流水 ^ ^ 坚持看官方英文文档的好习惯 多画流程图,结构图
List<String> list = new ArrayList<String>; list.add(....); for (int i=0; i<list.size(); i++) { if (expression) { list.remove(i); // or list.remove(list.get(i)); } } then....throw IndexOutOfBoundsException 这个问题主要是在循环中删除数组元素导致的,碰到过两次了,记录一下几种解决方法。 1.将判断条件与数组长度分离 ...
等有空学习一下。 Git 官网:http://git-scm.com/ Git for windows下载:http://code.google.com/p/msysgit/downloads/list 在线资料: http://git-scm.com/course/svn.html http://www-cs-students.stanford.edu/~blynn/gitmagic/intl/zh_cn/ http://progit.org/book/zh/
在Maven中使用jetty插件进行测试非常方便,帮我们自动作了一些工作,节省了时间; 通常我们修改了源码的时候eclipse会自动编译,jetty插件发现编译文件有变化后会自动更新到jetty容器中,该插件在Maven项目pom.xml中的配置如下: <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> <version>${jetty.versi ...
关于Maven的简介自己搜索一下吧。 这篇日志会持续添加遇到的问题:) 编译Maven项目的时候遇到: [WARNING] Using platform encoding <GBK actually> to copy filtered resources, i.e. build is platform dependent 原因:编码问题 pom.xml文件中添加:         <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</g ...
数据集取前N条记录: 方法一: data temp1; set sashelp.air(firstobs=n obs=n/obs=n); run; /*firstobs.n < obs.n*/ 方法二: proc sql; create table temp2 as select * from sashelp.air(firstobs=n obs=n/obs=n); quit; /*firstobs.n < obs.n*/ 方法三: proc sql inobs=n; create table temp3 as select * from sashelp.air; ...

JAVA项目命名规范

    博客分类:
  • Java
一、命名规范 1、 项目名全部小写 2、 包名全部小写 3、 类名首字母大写,如果类名由多个单词组成,每个单词的首字母都要大写。 如:public class MyFirstClass{} 4、 变量名、方法名首字母小写,如果名称由多个单词组成,每个单词的首字母都要大写。 如:int num=0;     public void myMethod(){} 5、 常量名全部大写 如:public static final String GAME_COLOR=”RED”; 6、所有命名规则必须遵循以下规则: 1)、名称只能由字母、数字、下划线、$符号组成 2)、不能以数字开头 3)、名称不能使用Ja ...
如果要使插件开发应用能有更好的国际化支持,能够最大程度的支持中文输出,则最好使 Java文件使用UTF-8编码。然而,Eclipse工作空间(workspace)的缺省字符编码是操作系统缺省的编码,简体中文操作系统 (Windows XP、Windows 2000简体中文)的缺省编码是GB18030,在此工作空间中建立的工程编码是GB18030,工程中建立的java文件也是GB18030。如果要使新建立工程、java文件直接使UTF-8则需要做以下工作: 1、windows->Preferences...打开"首选项"对话框,左侧导航树,导航到general-> ...
1、打开Chrome,在地址栏键入chrome://net-internals,回车 2、在HSTS选项卡下的Domain中输入你想要实现这个强制跳转的域名,如 twitter.com-->https://twitter.com 3、勾选上Include subdomains,这样可以确保指定网址的所有二级域名都被重定向到https。 4、点击Add按钮,完成。
Global site tag (gtag.js) - Google Analytics