- 浏览: 303726 次
- 性别:
- 来自: 广州
最新评论
-
string2020:
一般用在什么地方。
java.security.Principal接口的作用 -
mayang_lang:
问题解决
Exception loading sessions from persistent storage -
LetCode:
Exception loading sessions from persistent storage -
feijiing:
牛逼了,搞定了
Exception loading sessions from persistent storage -
keating:
only delete the file session.se ...
Exception loading sessions from persistent storage
文章列表
查看隔离级别:select @@tx_isolation;
设置隔离级别:如:set transaction isolation level read uncommited;
或者(大写的没问题)SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
Eclipse中设置编码的方式
如果要使插件开发应用能有更好的国际化支持,能够最大程度的支持中文输出,则最好使 Java文件使用UTF-8编码。然而,Eclipse工作空间(workspace)的缺省字符编码是操作系统缺省的编码,简体中文操作系统 ( ...
- 2009-02-17 14:13
- 浏览 1314
- 评论(0)
即使MySql服务器端的中文编码没有问题,命令客户端显示的结果也不一定正确,因为命令行客户端也有编码
输入命令:SHOW VARIABLES LIKE 'character_set%';
set character_set_results='gbk';
这样就可以设置好了
- 2009-02-13 17:03
- 浏览 5057
- 评论(0)
Mysql重装之前应该将Mysql中data目录下的数据库文件和ibdata1复制出来,重装之后就将其复制到相同的目录就搞掂了
- 2009-02-13 11:55
- 浏览 1533
- 评论(0)
Mysql重装失败的时候(在Start Service失败的时候),只要在配置的第一步选择标准配置(英文是sta...)即可
- 2009-02-13 11:29
- 浏览 1923
- 评论(0)
出现这样的错误很有可能是eclipse导入新的项目的时候没有把那个项目中的eclipse设置删除,而那个项目中使用的Eclipse版本跟你的版本不同,所以出现了不兼容的情况。解决方案:
1、关闭eclipse。
2、先把C:\eclipse-SDK-3.2.1-win32\eclipse\configuration下除了config.ini外的所有文件删除。
3、删除工作空间中的那个不兼容的项目或者删除eclipse设置文件,还有Tomcat插件的信息等等。当然,最好的办法是另外新建一个工作空间,这样就干干净净了。
4、启动eclipse。
- 2009-02-11 10:47
- 浏览 6540
- 评论(0)
在Eclipse中导入其他项目,报下面2个错误。将项目所需的jar都引入了。依然还存在这个问题。
1.The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project
2.The type java.lang.Object cannot be resolved. It is indirectly referenced from requir ...
- 2009-02-09 10:35
- 浏览 2038
- 评论(0)
例如:在E:\apache-tomcat-5.5.12\webapps\tree\WEB-INF\lib建一个文件:shishi.txt,之后在命令操作框中输入:
E:\apache-tomcat-5.5.12\webapps\tree\WEB-INF\lib>dir E:\apache-tomcat-5.5.12\web
apps\tree\WEB-INF\lib\*.jar -> shishi.txt
- 2009-02-08 13:01
- 浏览 1190
- 评论(1)
public class UserDAOImpl{
public void save() {
// TODO Auto-generated method stub
System.out.println("user saved");
}
}
//相关配置,省略了一些不相关内容
<bean id="userDAO" class="UserDAOImpl">
<bean id="userDAOProxy" class=" ...
- 2009-02-04 11:31
- 浏览 1215
- 评论(0)
response.setCharacterEncoding("UTF-8"); 在Servlet2.3中是不行的,至少要2.4版本才可以,如果低于2.4版本,可以用如下办法:
response.setContentType("text/html;charset=UTF-8");
- 2009-02-04 09:35
- 浏览 2203
- 评论(0)
public static void main(String[] args) {
List<Integer> list=new ArrayList<Integer>(Arrays.<Integer>asList(1,2,3,5,6,8,9,3,5));
Iterator it=list.iterator();
while(it.hasNext()){
if((Integer)it.next()==3){
it.remove();
}
}
System.out.println(list);
}
- 2009-01-04 14:48
- 浏览 1132
- 评论(0)
为什么 public static void main(String[] args) {
List<Integer> list=new ArrayList<Integer>(Arrays.<Integer>asList(1,2,3,5));
for(Integer l:list){
if(l==3){
list.remove(l);
}
}
System.out.println(list);
}
不抛异常,而
public static void main(String[] args) {
List<Inte ...
- 2009-01-04 14:43
- 浏览 1680
- 评论(3)
<bean name="bizLogQueryService" class="query.service.BizLogQueryServiceImpl">
<property name="biTypes">
<list>
<value>123</value>
<value>456</value>
</list>
</property>
</bean>
- 2008-11-13 11:06
- 浏览 989
- 评论(0)
打开命令窗口,进入了目录所在路径,比如项目名称为a,那么进入到..\a,之后输入mvn clean install,搞掂安装了
- 2008-11-13 11:03
- 浏览 993
- 评论(0)