
idea
snailisBigbull
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
jar包导入,pom.xml文件配置
再使用JPA之前,需要对pom.xml文件进行配置,通过配置,IDEA能够自行的导入工程所需要的jar包,配置如下: <?xml version="1.0" encoding="UTF-8"?> 4.0.0 cn.itsource jpa-demo pom 1.0-SNAPSHOT jpaday01 org.hibernate hibernate-core 4.3.8.Fi...原创 2019-07-24 01:03:11 · 2096 阅读 · 0 评论 -
IDEA配置persistence.xml
persistence.xml 里面需要配置关于Hibernate的信息 以后需要的配置属性都可以在此文件里面找到 <persistence xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="htt...原创 2019-07-24 01:13:01 · 1620 阅读 · 0 评论 -
IDEA快捷键总结
IntelliJ IDEA对一行代码可进行以下的行操作: 添加 Shift+Enter 复制 Ctrl+D 移动 Ctrl+Shift+↑/↓ 或者 Alt+Shift+↑/↓ 删除 Ctrl+Y 快速生成get/set;构造方法,override方法 alt+insert ...原创 2019-07-25 19:50:37 · 153 阅读 · 0 评论 -
IDEA部署,启动tomcat报错一
Error creating bean with name ‘baseServiceImpl’: Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: priv...原创 2019-08-05 10:42:03 · 455 阅读 · 0 评论 -
IDEA部署启动tomcat报错二
05-Aug-2019 10:43:44.529 严重 [RMI TCP Connection(2)-127.0.0.1] org.apache.catalina.core.StandardContext.startInternal One or more listeners failed to start. Full details will be found in the appropriat...原创 2019-08-05 10:49:52 · 341 阅读 · 0 评论 -
AnnotationException: @OneToOne or @ManyToOne on cn.itsource.aisell.domain启动IDEA报错
hibernate.AnnotationException: @OneToOne or @ManyToOne on cn.itsource.aisell.domain.Purchasebillitem.product references an unknown entity: long 原因是entity实体类中属性的类型映射关系部匹配 product 不是Long类型。 ...原创 2019-08-13 13:22:16 · 946 阅读 · 0 评论 -
Idea使用JRebel发布web项目报错
08-Aug-2019 16:18:14.689 严重 [RMI TCP Connection(2)-127.0.0.1] org.apache.catalina.core.StandardContext.startInternal Context [] startup failed due to previous errors 08-Aug-2019 16:18:14.772 警告 [RMI T...原创 2019-08-08 19:48:58 · 470 阅读 · 0 评论 -
在使用easypoi做导出功能时:报错NoClassDefFoundError: cn/afterturn/easypoi/excel/entity/ExportParams
NoClassDefFoundError: cn/afterturn/easypoi/excel/entity/ExportParams 我的原因是忘记讲刚刚导入的jarbuilderpath到lib里面。 第一步: 第二步: 第三步: 右下角apply —》ok即可 ...原创 2019-08-11 18:59:30 · 4026 阅读 · 0 评论