Questions tagged [application-scope]

Use this tag for questions related to an application's scope, that determines which of its resources are available to other parts of the system.

Each application has an application scope that determines which of its resources are available to other parts of the system. Application scoping ensures that one application does not impact another application. You can specify what parts of the application other applications can access by setting application access settings.

Source: Application Scope

is used for questions that discuss how to affect/manipulate/etc. the application scope.

18 questions
0
votes
1 answer

Get application field from JSP from Custom Tag

i have to count accesses of a page, but when the count is odd i should not print the count and i have to do this from a custom tag. I can't call my field count from custom tag.. This is my code: index jsp file <% Integer count =…
0
votes
2 answers

How to refresh DB data in Application ScopedBean?

From this post I learned that my page which contains a StreamedContend has to be related to an ApplicationScoped bean, but its has the consequence that if I modify some data (saved in DB) in an other page, the image build with the StreamedContent…
azro
  • 53,056
  • 7
  • 34
  • 70
0
votes
0 answers

WildFly 12 Wicket 7.10 - Why does only the first thread have access to Application?

Each request attempts to create new instances of Singletons, which fail because they use Application.get() which fails with error: There is no application attached to current thread default Same code works in WildFly 8.2 and Wicket 6.20. So two…
Roberto Murphy
  • 456
  • 5
  • 15
1
2