Home

0

Wildfly读取classpath文件

由于Wildfly使用Virtual File System 无法通过URL或InputStream直接转换为java.io.File。需要通过VirtualFile转换: 123URL url = getClass().getClassLoader().getResource("updatesql");VirtualFile virtualFile = (VirtualFil

0

表和视图对比

@ 表是存储数据的数据库对象。 @ 视图是表的部分列或多个表的SELECT集合,即就是个SELECT语句。 @ 视图并不存储真实数据,不占用内存和空间,只是用于数据查询,展示。 @ 更新表的内容同样会更新视图。 @ 在Oracle数据库中,更新视图同样会更新表的内容,参考Oracle View @ 视图适用于多表连接查询重复使用,不适合增删改。存储过程适用于频繁操作的SQL语句,可以提高效率。 @

0

How to check if IP is in IP range

I work on writing services, the client validation contains IP checking. But the customer uses cluster base framework to invoke our services, there are multiple clients with different IPs obviously. Fi

0

Jboss6.x升级到Wildfly10所遇到的问题

1). Hibernate second level cache问题 17:02:43,041 ERROR [org.jboss.msc.service.fail] (ServerService Thread Pool – 61) MSC000001: Failed to start service jboss.persistenceunit.abc-weixin-showcase#primar

0

Netty开发环境搭建

克隆Netty源码 $ git clone git@github.com:netty/netty.git Build dev-tools 12$ cd dev-tools$ mvn clean install Note: 此步骤必须,因为build整个项目需要使用dev-tools。感觉netty的build顺序不合理,应该自动build dev-tools。 3. Build整个项目 12$