- 浏览: 426325 次
- 性别:
- 来自: 济南
文章分类
最新评论
-
wufeipeng2001:
结果呢?
数据源 -
ivan:
这样可以。jstl好傻。用grails没有这个问题。
jstl fn:replace替换换行符 -
396063616:
怎么解决的?
android学习之android.content.res.Resources$NotFoundException: File res/drawable/ -
Rinoajun:
多谢楼主,和你遇到了同样的问题
jstl fn:replace替换换行符 -
hellostory:
tanghanlin 写道这样也可以,在安装插件时,勾选:Co ...
eclipse报错Missing Constraint: Require-Bundle: org.eclipse.emf.transaction;
jboss的VFS是为了解决什么问题,他为什么有用呢
在jboss中有很多类似的资源操作的代码都分散在程序的各个地方,大多数情况下代码首先确定操作的资源的类型,比如是文件或者是文件夹,通过URL加载的资源等,在不同的代码中其中包含了相同的代码。
例如
public static URL[] search(ClassLoader cl, String prefix, String suffix)
throws IOException {
Enumeration[] e = new Enumeration[] { cl.getResources(prefix),
cl.getResources(prefix + "MANIFEST.MF") };
Set all = new LinkedHashSet();
URL url;
URLConnection conn;
JarFile jarFile;
for (int i = 0, s = e.length; i < s; ++i) {
while (e[i].hasMoreElements()) {
url = (URL) e[i].nextElement();
conn = url.openConnection();
conn.setUseCaches(false);
conn.setDefaultUseCaches(false);
if (conn instanceof JarURLConnection) {
jarFile = ((JarURLConnection) conn).getJarFile();
} else {
jarFile = getAlternativeJarFile(url);
}
if (jarFile != null) {
searchJar(cl, all, jarFile, prefix, suffix);
} else {
boolean searchDone = searchDir(all, new File(URLDecoder
.decode(url.getFile(), "UTF-8")), suffix);
if (searchDone == false) {
searchFromURL(all, prefix, suffix, url);
}
}
}
}
return (URL[]) all.toArray(new URL[all.size()]);
}
private static boolean searchDir(Set result, File file, String suffix)
throws IOException {
if (file.exists() && file.isDirectory()) {
File[] fc = file.listFiles();
String path;
for (int i = 0; i < fc.length; i++) {
path = fc[i].getAbsolutePath();
if (fc[i].isDirectory()) {
searchDir(result, fc[i], suffix);
} else if (path.endsWith(suffix)) {
result.add(fc[i].toURL());
}
}
return true;
}
return false;
}
上面的代码在多个地方都会包含这样的代码。各自进行文件的处理,但是这种方式有一个很大的问题,就是热发布,需要将文件覆盖已经发布锁定的文件。为了解决文件锁的问题,可能需要将操作文件的代码进行集中处理,正式因为这个,VFS工程出现了。
VFS发布的API
VFS的基本使用包括二部分内容
- 简单的资源导航
- 访问者模式的API
综上所属,jdk自身提供的资源导航,需要判定文件的类型,操作比较繁琐。在VFS中我们将所有的类型抽象为一个类型-VirtualFile
public final class VirtualFile implements Serializable{
/**
* Get the simple VF name (X.java)
*
* @return the simple file name
*/
public String getName();
/**
* Get the simple VF name mapped to lowercase (x.java) (used by case-insensitive filesystems like ZIP).
*
* @return the lowercase simple file name
*/
public String getLowerCaseName();
/**
* Get the absolute VFS full path name (/xxx/yyy/foo.ear/baz.jar/org/jboss/X.java)
*
* @return the VFS full path name
*/
public String getPathName();
/**
* Get the path name relative to a parent virtual file. If the given virtual file is not a parent of
* this virtual file, then an {@code IllegalArgumentException} is thrown.
*
* @param parent the parent virtual file
* @return the relative path name as a string
* @throws IllegalArgumentException if the given virtual file is not a parent of this virtual file
*/
public String getPathNameRelativeTo(VirtualFile parent) throws IllegalArgumentException ;
/**
* Get the absolute VFS full path name. If this is a URL then directory entries will have a trailing slash.
*
* @param url whether or not this path is being used for a URL
*
* @return the VFS full path name
*/
String getPathName(boolean url);
/**
* When the file was last modified
*
* @return the last modified time
*/
public long getLastModified();
/**
* Get the size
*
* @return the size
*/
public long getSize();
/**
* Tests whether the underlying implementation file still exists.
*
* @return true if the file exists, false otherwise.
*/
public boolean exists();
/**
* Determines whether this virtual file represents a true root of a file system.
* On UNIX, there is only one root "/". Howevever, on Windows there are an infinite
* number of roots that correspond to drives, or UNC paths.
*
* @return {@code true} if this represents a root.
*/
public boolean isRoot();
/**
* Determine whether the named virtual file is a plain file.
*
* @return {@code true} if it is a plain file, {@code false} otherwise
*/
public boolean isFile();
/**
* Determine whether the named virtual file is a directory.
*
* @return {@code true} if it is a directory, {@code false} otherwise
*/
public boolean isDirectory() ;
/**
* Access the file contents.
*
* @return an InputStream for the file contents.
*
* @throws IOException for any error accessing the file system
*/
public InputStream openStream();
/**
* Delete this virtual file
*
* @return {@code true} if file was deleted
*/
public boolean delete();
/**
* Get a physical file for this virtual file. Depending on the underlying file system type, this may simply return
* an already-existing file; it may create a copy of a file; or it may reuse a preexisting copy of the file.
* Furthermore, the retured file may or may not have any relationship to other files from the same or any other
* virtual directory.
*
* @return the physical file
*
* @throws IOException if an I/O error occurs while producing the physical file
*/
public File getPhysicalFile() ;
/**
* Get a {@code VirtualFile} which represents the parent of this instance.
*
* @return the parent or {@code null} if there is no parent
*/
public VirtualFile getParent();
/**
* Get the children. This is the combined list of real children within this directory, as well as virtual children
* created by submounts.
*
* @return the children
*/
public List<VirtualFile> getChildren();
/**
* Visit the virtual file system
*
* @param visitor the visitor
*
* @throws IOException for any problem accessing the virtual file system
* @throws IllegalArgumentException if the visitor is null
* @throws IllegalStateException if the file is closed
*/
public void visit(VirtualFileVisitor visitor) throws IOException;
......
}
正与以前的对与只读文件的操作,只需要添加一些选项区清楚或者删除资源,有时候清楚或者删除资源需要处理一些临时文件,比如嵌套的jar等。
转换jdk或者RUL资源到VirtualFile,虚拟文件需要一个root,VFS类知道如何根据一个URL取得虚拟文件
public class VFS
{
/**
* Get the virtual file system for a root uri
*
* @param rootURI the root URI
* @return the virtual file system
* @throws IOException if there is a problem accessing the VFS
* @throws IllegalArgumentException if the rootURL is null
*/
static VFS getVFS(URI rootURI) throws IOException
/**
* Create new root
*
* @param rootURI the root url
* @return the virtual file
* @throws IOException if there is a problem accessing the VFS
* @throws IllegalArgumentException if the rootURL
*/
static VirtualFile createNewRoot(URI rootURI) throws IOException
/**
* Get the root virtual file
*
* @param rootURI the root uri
* @return the virtual file
* @throws IOException if there is a problem accessing the VFS
* @throws IllegalArgumentException if the rootURL is null
*/
static VirtualFile getRoot(URI rootURI) throws IOException
/**
* Get the virtual file system for a root url
*
* @param rootURL the root url
* @return the virtual file system
* @throws IOException if there is a problem accessing the VFS
* @throws IllegalArgumentException if the rootURL is null
*/
static VFS getVFS(URL rootURL) throws IOException
/**
* Create new root
*
* @param rootURL the root url
* @return the virtual file
* @throws IOException if there is a problem accessing the VFS
* @throws IllegalArgumentException if the rootURL
*/
static VirtualFile createNewRoot(URL rootURL) throws IOException
/**
* Get the root virtual file
*
* @param rootURL the root url
* @return the virtual file
* @throws IOException if there is a problem accessing the VFS
* @throws IllegalArgumentException if the rootURL
*/
static VirtualFile getRoot(URL rootURL) throws IOException
/**
* Get the root file of this VFS
*
* @return the root
* @throws IOException for any problem accessing the VFS
*/
VirtualFile getRoot() throws IOException
}
注:
这部分代码是老的vfs的代码,在新的vfs代码中,已经不再依靠URL,而是采用mount的方式,此处只是为了表明思路。
你可以采用不同的方式来取得VFS的实例,比如getVFS, createNewRoot and getRoot
由于VFS的新版本已经发生了变化,可以看新代码,此处不再详述。(由于此部分直接翻译,后续可以考虑按照新的版本重新写一份)
VFS架构
VFS的发布的API非常直观,他的实现非常复杂,这里进行一下阐述
每次创建一个VFS实例,配套的实例化一个VFSContext,他是根据VFSContextFactory生成的,他会根据不同的协议映射不同的实现类,比如文件系统映射为FileSystemContextFactory,Zip文件映射为ZipEntryContextFactory。
另外每次VFS创建的时候,匹配的VirtualFileHandler也会被生成,他知道如何处理不同的类型的资源
到这里基本上可以了解vfs的原理,后面不再进行描述,下面会学习vfs3的代码,查看新代码的原理
发表评论
-
导入jme3的Unknown data type: uint64_t
2012-07-17 17:44 1301今天使用blender编辑了一个场景导入到jme3的工程中,结 ... -
JDK1.3 中的本地绘制支持
2012-07-12 12:36 902转帖:http://www.sudu.cn/info/inde ... -
jdk-6u29 导致 tomcat 启动时卡死
2012-04-05 11:14 1982这几天tomcat在启动的时候来时在连接数据库的时候就停止了, ... -
eclipse查看jar对应的源代码
2012-03-16 11:16 1058在eclipse种关联jar文件对应的源代码的方法如下 右键 ... -
eclipse解析xml提示错误
2011-10-10 22:03 1784在代码种需要用到 import com.sun.org.ap ... -
eclipse学习点滴
2011-07-22 16:44 1062近一段事件在研究eclipse,记录点滴,防止忘记 1.带调 ... -
gef学习好去处
2011-07-02 22:33 924http://blog.csdn.net/evilinside ... -
GEF 请求和编辑策略
2011-07-02 21:59 1249近期打算做界面定义的 ... -
JPA的Hibernate实现的eclipse插件
2011-01-26 11:22 1479http://objectgeneration.com/upd ... -
Netbeans响应慢的原因
2011-01-06 21:42 1530转载:Netbeans响应慢的原因 现象:当 ... -
netbean 扩展的几个扩展点
2011-01-04 21:56 1007NbPreferences.forModule(RibbonL ... -
jboss 学习security
2010-12-25 23:01 1064jboss的安全控制主要包括了下面几个部分 <doma ... -
HornetQ 架构
2010-12-25 22:20 1643核心架构 HornetQ核心设计为多个POJO的集合,他一来 ... -
HornetQ 消息概念
2010-12-25 21:24 1900消息传递保证 大多数 ... -
JBoss将common下的lib放入classspath
2010-12-25 09:45 1346这几天在进行jboss下的开发,那的最小的容器本来想一点一点的 ... -
jboss6 profile配置原理
2010-12-09 23:29 2310今天仔细分析了一下jbos ... -
Jboss5学习Deployment callbacks
2010-12-08 20:39 1249这个地方思维模式比较新颖,这里翻译一下: 有时候 ... -
jboss的bean声明周期名称
2010-12-08 18:03 962bean在解析到使用总共经过了如下的状态变化阶段 PreP ... -
jboss学习 - 程序生成配置代码分析
2010-12-08 14:13 1098以前使用spring已经习惯里,现在研究了一下jboss的微内 ... -
netbeans学习篇 - classloader
2010-10-22 10:19 1230Netbeans的Classloader是他运行容器中不可缺少 ...
相关推荐
`jboss-spring-int-vfs.jar`就是为了让Spring能够理解和利用JBoss的VFS,从而在JBoss环境下正确地处理文件资源,如加载配置文件、读写日志等。这个插件使得Spring应用无需关心具体的文件系统实现,只需遵循VFS接口,...
jboss-spring-int-vfs.jar
"jboss-as-sprint-int-5.0.0.GA.jar" 和 "jboss-spring-int-vfs.jar" 是与JBoss应用服务器相关的两个关键组件,主要用于Spring框架与JBoss服务器的集成以及虚拟文件系统(Virtual File System,VFS)的支持。...
为了解决这些问题,"snowdrop-vfs.jar" 和 "jboss-logging.jar" 这两个jar包就起到了关键作用。 首先,让我们深入了解一下 "snowdrop-vfs.jar"。VFS(Virtual File System,虚拟文件系统)是JBoss提供的一种抽象层...
在JBoss平台中,Virtual File System(VFS)是一个核心组件,它为处理各种资源提供了一个统一的抽象层。VFS解决了JBoss内部代码中大量重复的资源处理问题,特别是那些试图识别资源类型(如文件、目录或通过URL加载的...
这两个核心文件`jboss-as-sprint-int-5.0.0.GA.jar`和`jboss-spring-int-vfs.jar`是实现这一集成的关键组件。 1. **Spring框架**:Spring是一个开源的应用框架,它提供了全面的企业级应用开发解决方案,包括依赖...
JBoss EAP 6.4 是一款广泛应用的企业级应用服务器,尤其适合部署Web应用程序。本文主要介绍了如何配置和管理JBoss EAP 6.4,包括安装和部署FineReport、修改服务器端口、调整内存设置以及改变Web工程的根目录。 ...
在 web.xml 文件中,我们需要将 contextClass 配置为 org.jboss.spring.vfs.context.VFSXmlWebApplicationContext,以便让 JBoss 能够正确地加载项目中的 Bean。 ```xml <context-param> <param-name>contextClass...
jboss-3.2.1.jar jbossall-client.jar jbosscx-client.jar jboss-jmx.jar jboss-jmx-rmi-connector-client-3.0.4.jar jboss-system-3.2.1.jar
struts-2.2.1部署到JBoss时出现vfs警告:[Could not create JarEntryRevision for[vfs:/D:/Develop/jboss-as-7.0.0.Final/standalone/deployments/test.war/WEB-INF/lib/struts2-core-2.2.1]!],需要替换xwork-core-...
3. `classloading-vfs`:这是一个基于Virtual File System(VFS)的实现,VFS是JBoss提供的一种抽象文件系统,可以处理各种类型的物理存储,如本地文件系统、网络共享等。`classloading-vfs`使得类加载过程能够利用...
解决tomcat换jboss 7 项目正常启动但无法正常运行
JBoss管理与开发核心技术..part1.rar
其次,"shrinkwrap-vfs3"是JBoss的一个虚拟文件系统(VFS)扩展,它提供了一种灵活的方式来模拟文件系统操作,尤其在测试环境中非常有用。VFS3是JBoss AS7和EAP6的核心部分,允许在没有实际文件系统的情况下处理文件...
##### 2.1 VFS-enabled ApplicationContexts(虚拟文件系统支持的应用上下文) Spring框架支持通过虚拟文件系统(Virtual File System, VFS)来加载配置文件,这种方式在JBOSS环境中尤为有用。VFS允许Spring访问部署...
Java编程中的`java.lang.NoClassDefFoundError: org/jboss/logging/`是一个常见的运行时错误,通常发生在尝试执行一个类时,JVM无法找到在编译时已经存在的类定义。这个错误并不意味着类在编译期间不存在,而是表明...
- EOS应用启动时会获取应用名称,但在JBoss 7.x中应用被部署在VFS临时目录,导致无法正确获取名称。解决方案是按照`Context`的`ContextPath`来获取应用名。 3. **应用启动后license验证错误** - 应用启动过程中...
snowdrop 用于java项目从tomcat迁移到jboss出现的问题
### JBoss5部署原理详解 #### 一、JBoss5微容器架构与启动流程 ...总结来说,JBoss5通过引入微容器架构、新的部署机制以及VFS扫描器等技术,实现了更为灵活高效的部署方案,同时也为开发人员提供了更好的编程体验。
- **JBoss VFS**:虚拟文件系统(Virtual File System)是JBoss AS中的一个核心组件,用于处理应用程序的部署。 - **Hibernate Logging**:提供了对Hibernate日志的支持,使得开发者能够更方便地进行调试和问题追踪。 ...