• 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 convention plugin with tiles type result.

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have the small project, which use struts2 with tiles templates and action's configs in struts.xml.
It worked nice, until i decided to use convention plugin.
It was:


Now I'm use

When I start my app on glassfish server it throws exception: Unable to load configuration. - [unknown location]
When I change location to some jsp file and remove type param it works.

I have not found any information about using convention plugin with tiles.
Can anyone help?
 
Vitaliy Gorbunov
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The default convention package
struts.convention.default.parent.package=convention-default.

So I should use @ParentPackage("default")
Or add in struts.properties struts.convention.default.parent.package=default.
Or rename my package to convention-default.
reply
    Bookmark Topic Watch Topic
  • New Topic