Skip to content

Tag: java

Jaas Basic Authentication tomcat 7

I keep on getting the same error, I have already changed the tomcat7w file that specifies the jaas config file location I have already added this tom my tomcat7w.exe file. another is that I also have this realm so what am I missing? please help me, I am using netbeans, tomcat 7.0.47. I have resolved to using …

Can you invert a switch in java?

Is there a way to invert a switch for example switch (!(x))? I’m writing a program and I only want the user to be able to input certain letters. If they input an invalid letter, they would have to input it again. I’m trying to use a switch for this avoiding doing something like because the number …

Is it bad practice to keep data in static variables?

In an Android application, is it bad practice to store objects in static fields in these cases? Application data. Is it bad to keep application data in static variables in a class while the application is running? Currently, I’m storing the data in an instance variable in my Application class. Then clas…