- 浏览: 26680 次
- 性别:
- 来自: 广州
最新评论
-
zhijie_zhang:
害人,按你的配置搞的起步啦了。。。
myeclipse8.6 available memory is low
文章列表
使用JDBC连接oracle数据时候,出现了这个错误,正正找了一个星期,每天晚上下班就开始debug,今天下午终于知道了原因,造成这个错误的原因主要有以下几种
1,数据库服务器的主机防火墙把oracle的端口例外,如果测试的时候,可以尝试把防火墙关闭了,看看是否这个原因(一般非这个原因)
2,看看参数用户,密码,端口对不对
3,数据库的url对应不上,服务器的IP对不对
重复检查几次2,3
如果以上都没发现问题,可能就是这个原因了(我出现的原因)
oracle的thin连接分为两种,一个是SID,一个是SERVICE NAME,而这两个的差别就在于服务器如何是配置SID, ...
-Xms512m-Xmx512m-XX:PermSize=256-XX:MaxPermSize=256m-Xmn168m-XX:ReservedCodeCacheSize=64m上面是我参照一个留言所弄的配置
昨天晚上在研究ext的时候发现极需要api,后来发现要ext的api要发布才能看。。。
发布了,于是myeclipse变得非常慢,后来还垮掉了。。。。每次重启,都显示同一个提示标题中的错误。
于是晚上搜了一天,后来把所有项目剪切出来,然后再进入myeclipse,这次好了,为了下次不出现这样的错误于是便继续找一些这方面得资料。
找到了http://www.iteye.com/ ...
web.xml的配置
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/classes/applicationContext.xml
</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.Conte ...
java.lang.IllegalStateException: Neither BindingResult nor plain target object for bean name 'book' available as request attribute
昨日在学习spring3的时候,在做一个页面传送对象到后台,也就是说页面binding对象,使用到
<form:form method="POST" modelAttribute="book">
<form:input path="name" ...
摘自:http://www.blogjava.net/alex/archive/2006/11/09/80231.html
基于业务需求,您会需要使用两个字段来作复合主键,例如在User数据表中,您也许会使用"name"与"phone"两个字段来定义复合主键。
假设您这么建立User表格:
<!--<br><br>Code highlighting produced by Actipro CodeHighlighter (freeware)<br>http://www.CodeHighlighter.com ...
Intro
It is not straightforward to realise a many-to-many association with JPA when in the join table there is at least an extra column. In this small tutorial I’m going to show how to design entity objects that will handle the many-to-many relation and which annotations are needed in order to fix a ...
对于spring,刚刚学习的,所以有很多都不是很理解,大多数都是只知道要这样做,但是不知道为什么要这样做。
在测试dao层操作的时候,写了一个TestStudentServiceImpl类,field有个private 的 StudentServiceImpl类,需要用spring注入,StudentServiceImpl继承了BaseDaoSupport<Student>类和实现了IStudentService接口。
测试类的代码
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("/appl ...