Fórum

how to get the current path of a portlet or java class? (glassfish)

Johan de jong, modificado 11 Anos atrás.

how to get the current path of a portlet or java class? (glassfish)

Junior Member Postagens: 41 Data de Entrada: 06/02/12 Postagens Recentes
I tried several ways to get it but all i get is the Path to liferay/glassfish-3.1.1/domains/domain1/config/
or the real path of the Liferay portal.

Last thing i tried was : new java.io.File(".").getCanonicalPath();
Amit Sharma, modificado 11 Anos atrás.

RE: how to get the current path of a portlet or java class? (glassfish)

New Member Postagens: 6 Data de Entrada: 29/08/12 Postagens Recentes
Hi Johan, Please try this
this.getClass().getResource("").getPath();

This should give you the path from which current class is being referenced by JVM.

Regards,
Amit Sharma
thumbnail
David H Nebinger, modificado 11 Anos atrás.

RE: how to get the current path of a portlet or java class? (glassfish)

Liferay Legend Postagens: 14919 Data de Entrada: 02/09/06 Postagens Recentes
Any implementation that relies on a filesystem path is a bad implementation and poor design.

Reference classpath items, certainly, or use some sort of property to define a filesystem path.

But certainly do not rely on a location in the filesystem where your class/jar lives to be the basis for filesystem access.
Johan de jong, modificado 11 Anos atrás.

RE: how to get the current path of a portlet or java class? (glassfish)

Junior Member Postagens: 41 Data de Entrada: 06/02/12 Postagens Recentes
I need the current Path of the portlet because i want to save a generated generated picture.

maybe i was thinking wrong. So any other suggestion is appreciated
thumbnail
David H Nebinger, modificado 11 Anos atrás.

RE: how to get the current path of a portlet or java class? (glassfish)

Liferay Legend Postagens: 14919 Data de Entrada: 02/09/06 Postagens Recentes
If it is a temporary file (doesn't live beyond the restart of the application container), it should be stored in the temp folder.

If it has a longer lifespan, store it to the image gallery.
Johan de jong, modificado 11 Anos atrás.

RE: how to get the current path of a portlet or java class? (glassfish)

Junior Member Postagens: 41 Data de Entrada: 06/02/12 Postagens Recentes
how can i store it in the image gallery?
i thought i needed to know the real path to this gallery too.

when i don't give path the image is stored inside the glassfish's config directory, and IMHO that is the last place where something should be stored.
( i even think that no portlet or liferay should be capable of writting and reading the Glassfish config directory