
java 遇到的问题
菜鸟江江
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SLF4J报错问题
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".SLF4J: Defaulting to no-operation (NOP) logger implementationSLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further...原创 2018-08-31 11:38:10 · 1751 阅读 · 1 评论 -
数据库 数据备份sql
create table xxx(你要的表名) as select * from xxx(你要备份的表)原创 2018-09-04 15:51:00 · 163 阅读 · 0 评论 -
maven建项目 会出现jsp报错
解决方法:在pom.xml配置文件中添加上javax.servlet的相关依赖: javax.servlet servlet-api 2.5 provided 依赖tomcat类库:项目右击—>build path —> configure build path — >libraries — > add libraries —> S...转载 2018-09-02 21:14:32 · 229 阅读 · 0 评论 -
eclipse运行maven项目报错java.lang.ClassNotFoundException
转自 : http://www.bubuko.com/infodetail-2225054.html 今天部署 shiro框架一直报错 在eclipse中运行maven项目,出现异常——java.lang.ClassNotFoundException: org.apache.shiro.web.env.EnvironmentLoaderListener。如果确认shiro相关的依赖ja...原创 2018-09-03 17:08:44 · 1562 阅读 · 0 评论 -
(转)maven中的groupId和artifactId到底指的是什么?
转自 https://blog.youkuaiyun.com/snowin1994/article/details/53024871 侵删 groupid和artifactId被统称为“坐标”是为了保证项目唯一性而提出的,如果你要把你项目弄到maven本地仓库去,你想要找到你的项目就必须根据这两个id去查找。 groupId一般分为多个段,这里我只说两段,第一段为域,第二段为公司名称。域又分为or...转载 2018-09-06 11:47:07 · 236 阅读 · 0 评论 -
Description Resource Path Location Type cvc-complex-type.2.4.c: The matching wildcard is strict,
xml 配置文件报错 以及解决办法xsi:schemaLocation 加上:http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd<beans xmlns="http://www.springframework.org/schema/bean...原创 2018-09-10 09:45:48 · 2833 阅读 · 1 评论 -
查看 linux tomcat 日志指令
转载 https://blog.youkuaiyun.com/zhangdaiscott/article/details/48623913转载 2018-09-10 16:05:22 · 1268 阅读 · 0 评论 -
web.xml配置文件中async-supported报错的解决方案
转载 https://blog.youkuaiyun.com/zxz547388910/article/details/50780068 侵删转载 2018-09-07 14:55:41 · 1867 阅读 · 0 评论 -
Spring的applicationContext.xml文件时出现The prefix "context" for element "context:component-scan" is not
转载 https://blog.youkuaiyun.com/qq_35155205/article/details/68484580spring启用注解扫描机制:加上这句话报:1.The prefix “context” for element “context:annotation-config” is not bound.看看spring头部属性是否缺少: xmlns:contex...转载 2018-09-14 15:56:02 · 487 阅读 · 0 评论