MyEclipse开发内存溢出问题window --> preferences -->
MyEclipse --> servers --> Tomcat --> JDK 里面在Optional Java VM arguments:
下面加如下内容:-Xmx512m -Xms256m -XX:MaxN...
分类:
系统相关 时间:
2014-06-03 08:07:18
阅读次数:
275
1.
eclipse与Myeclipse有什么区别呢Myeclipse的核心就是eclipse,只不过Myeclipse在此基础上增加了许多的插件,使用起来更加的方便。但是Myeclipse消耗的资源很多,在使用的时候一定要做好优化工作。2.
tomcat不是myEclipse自带的,是免费开源的w...
分类:
其他好文 时间:
2014-05-31 13:07:12
阅读次数:
233
HTTP Status 404 - /stovetype Status
reportmessage /stovedescription The requested resource (/stove) is not
available.Apache Tomcat/5.5.26在stove中小实例中没有...
分类:
其他好文 时间:
2014-05-31 12:58:02
阅读次数:
212
Linux系统下JDK安装配置1. 从oracle网站下载需要的JDK软件
:jdk-6u39-linux-i586.binhttp://www.oracle.com/technetwork/java/javase/archive-139210.html然后通过FTP上传到linux服务器上。2.
...
分类:
系统相关 时间:
2014-05-31 12:49:47
阅读次数:
398
You have decided to start up a new social
networking company. Other existing popular social networksalready have billions
of users, so the only way to...
分类:
其他好文 时间:
2014-05-31 04:34:45
阅读次数:
275
本文体验在MVC中使用ASP.NET Identity 2.0,体验与用户身份安全有关的功能:
→install-package Microsoft.AspNet.Identity.Samples -Version 2.0.0-beta2 -Pre
安装后,在App_Start,Controller...
分类:
Web程序 时间:
2014-05-31 04:30:44
阅读次数:
461
题目:输入一个整数s,打印出全部和为s的连续整数序列(至少含有2个数)。比如输入9,则输出2、3、4和4、5两个序列方案一:因为序列至少要2个数,则两个数上限值为(1+s)/2,我们能够枚举该序列的起点和终点求全部满足的序列。时间复杂度为O(n^2),效率比較低方案二:我们设置两个指针start和e...
分类:
其他好文 时间:
2014-05-31 04:07:27
阅读次数:
282
05-29 21:23:28.406: E/AndroidRuntime(23636):
java.lang.RuntimeException: Unable to start activity
ComponentInfo{com.***.Main}: java.lang.IllegalStateE...
分类:
其他好文 时间:
2014-05-30 21:14:57
阅读次数:
376
1. 自己接收到参数之后在后台进行转码处理2: 修改tomcat的配置文件 server.xml 即可
分类:
Web程序 时间:
2014-05-30 20:32:35
阅读次数:
317
Given a binary tree, find the maximum path
sum.The path may start and end at any node in the tree.For example:Given the
below binary tree, 1 ...
分类:
其他好文 时间:
2014-05-30 16:10:54
阅读次数:
185