• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Using/sharing content trough different separated web applications on the same server

 
Ranch Hand
Posts: 81
IBM DB2 Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi everyone!

I was wondering wich systems exist, for using content on different platforms.
Wich systems are you using?

For the moment, i have several web-apps, so several war-files, deployed on the same machines.
Also some on other machines.

Now, all those apps use content, like text, images, documents(pdf's etc...), etc...
All the documents are centralized on a main server, so this is not a big problem.
But, text and images, are used the same way as you would do in java Localization system, but its a custom system.
Problem is that the content is each time within the war.

i could solve this, trough several options i have :

-expand the custom localization system, so that its accesible from all web-apps. Making kind of server of it.
-using a database, and querying from the web-apps.
-i read about the java jcr (jackrabbit), wich seems a fancy system...

But is there a standard way of doing such things? Something more robust? Something that is not losing performance? What are your experience in this?

thanks!
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I just deal with it at build time and avoid any run-time ruckus.
 
reply
    Bookmark Topic Watch Topic
  • New Topic