- 浏览: 64944 次
- 性别:
- 来自: 青岛
最新评论
文章列表
今天启动Tomcat启动不了,报以下错:
org.apache.catalina.core.StandardContext startInternal
SEVERE: Error listenerStart
org.apache.catalina.core.StandardContext startInternal
SEVERE: Context [/******] startup failed due to previous errors
网上找了N多文章,都没有切中要害。
后来在国外网站上搜到一个方法
http://grails.1312388.n4.nabble.com/ ...
如果 MySQL 正在运行,首先杀之: killall -TERM mysqld。
运行mysqld_safe --skip-grant-tables &
如果此时不想被远程连接:mysqld_safe --skip-grant-tables --skip-networking &
使用mysql连接server
更改密码: update mysql.user set authentication_string=password('123qwe') where user='root' and Host = 'localhost';
*特别提醒注意的一点是,新版的mys ...
第一步:打开eclipse,找到windows-->preference。
第二步:进入preference后点击Web。
第三步:在Web下选择jsp files。
第四步:在右边找到encoding修改为自己希望的编码。
新建一个jsp页面,页面编码已经是我们修改后的了。
如果要使插件开发应用能有更好的国际化支持,能够最大程度的支持中文输出,则最好使 Java文件使用UTF-8编码。
那么如何设置呢?
1、window -> Preferences -> general -> Workspac -> Text file encoding
选择Other,将编码改变为UTF-8,这样以后新建立工程其属性对话框中的Text file encoding即为UTF-8。
2、window -> Preferences -> general -> Content Types
选择Text树,点开,选择Java So ...
在maven的默认配置中,对于jdk的配置是1.4版本,那么创建/导入maven工程过程中,工程中未指定jdk版本。
对工程进行maven的update,就会出现工程依赖的JRE System Library会自动变成JavaSE-1.4。
解决方案1:修改maven的默认jdk配置
maven的conf\setting.xml文件中找到jdk配置的地方,修改如下:
<profile>
<id>jdk1.6</id>
<activation>
<active ...
修改 IntelliJ IDEA 的默认文件编码
- 博客分类:
- JAVA
有两种办法可以修改 IntelliJ IDEA 的文件编码(IDE 版本为 14.1.4)
File->Settings->Editor->File Encodings 这种方式修改的文件编码方式只对当前 project 起作用,每次新建了一个工程后还需要重新设置编码方式。
File->Other Settings->Default Settings->Editor->File Encodings ,这儿设置的是默认的文件编码方式,所有新建的工程使用的都是默认的文件编码方式。
window -->preferences -->Server --> Runtime Environment -->Edit -->JRE
然后选中你要用的jre环境,保存就OK了
在生成环境中,会经常碰到Mysql字符的设置问题,CU很多牛人都说过N次了,个人也总结下。
如果在应用开始阶段没有正确的设置字符集,在运行一段时间以后才发现存在不能满足要求需要调整,那么就需要进行字符集的修改。字 ...
http://blog.csdn.net/dingwood/article/details/7247161
http://blog.codingnow.com/2006/11/lua_c.html
http://archive.apache.org/dist/maven/plugins/
<project 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/maven-4.0.0.xsd">
<model ...
http://blog.csdn.net/world_ding/article/details/52219590
http://www.cnblogs.com/AloneSword/p/3998557.html
[root@master ~]# /export/kafka/bin/kafka-console-producer.sh --broker-list 10.14.2.201:9092,10.14.2.202:9092,10.14.2.203:9092,10.14.2.204:9092 --topic test
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SL ...
由于Maven默认编译环境是JAVA 1.5 ,所以我们需要在pom.xml指定编译插件版本号,这样就可以保证更新Maven project版本不变。
<!-- java编译插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
...
在web.xml里配置Listener
xml 代码如下:
< listener >
< listener-class > org.springframework.web.context.ContextLoaderListener listener-class >
< / listener >
如果在web.xml里给该Listener指定要加载的xml,如:
xml代码如下:
<!-- spring config -->
<context-param>
...