自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (2)
  • 收藏
  • 关注

原创 2021-05-24

#mermaid-svg-1gmhZ8WqfZAZyGz1 .label{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);fill:#333;color:#333}#mermaid-svg-1gmhZ8WqfZAZyGz1 .label text{fill:#333}#mermaid-svg-1gmhZ8WqfZAZyGz1 .node rect,#mermaid-svg-1gmhZ8WqfZ

2021-05-24 17:57:25 67

原创 IntelliJ IDEA 2021.1 (Ultimate Edition) 与 jrebel 开发环境热部署的问题

版本是:IntelliJ IDEA 2021.1 (Ultimate Edition)当安装 jrebel 开发环境热部署 插件时,启动时会报 无法找到yml配置文件;原因不知道,但将插件卸载后,再 pom.xml文件中加入 <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId></depe...

2021-04-21 14:25:14 663

原创 问个问题Solr 相关的

ERROR org.apache.solr.core.CoreContainer  – Unable to create core: collection1org.apache.solr.common.SolrException: severeErrors at org.apache.solr.core.SolrCore.(SolrCore.java:844) at org.apach

2014-03-25 15:24:42 1043

原创 问个问题

如何映射其中的一张表到javabean中啊。

2014-03-13 11:37:28 561

集成Svn到Myecilpse

集成Myeclipse + SVn 完全可以集成,

2014-02-28

创建Oracle表空间

/*分为四步 */ /*第1步:创建临时表空间 */ create temporary tablespace user_temp tempfile 'D:\oracle\oradata\Oracle9i\user_temp.dbf' size 50m autoextend on next 50m maxsize 20480m extent management local; /*第2步:创建数据表空间 */ create tablespace test_data logging datafile 'D:\oracle\oradata\Oracle9i\user_data.dbf' size 50m autoextend on next 50m maxsize 20480m extent management local; /*第3步:创建用户并指定表空间 */ create user username identified by password default tablespace user_data temporary tablespace user_temp; /*第4步:给用户授予权限 */ grant connect,resource,dba to username; --------------------- /*分为四步 */ /*第1步:创建临时表空间 */ create temporary tablespace fids_temp tempfile 'E:\oracle\product\10.2.0\oradata\orcl\fids_temp.dbf' size 50m autoextend on next 50m maxsize 20480m extent management local; /*第2步:创建数据表空间 */ create tablespace fids logging datafile 'E:\oracle\product\10.2.0\oradata\orcl\fids.dbf' size 50m autoextend on next 50m maxsize 20480m extent management local; /*第3步:创建用户并指定表空间 */ create user fids identified by fids default tablespace fids temporary tablespace fids_temp; /*第4步:给用户授予权限 */ grant connect,resource,dba to fids;

2014-02-28

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除