¡@

Home 

java Programming Glossary: internals

How does ConcurrentHashMap work internally?

http://stackoverflow.com/questions/11793067/how-does-concurrenthashmap-work-internally

that a ConcurrentHashMap has something different in its internals. Do you have some information about those implementation details..

How to redirect to the homepage if the user accesses the login page after being logged in?

http://stackoverflow.com/questions/12597519/how-to-redirect-to-the-homepage-if-the-user-accesses-the-login-page-after-being

Security dev says here Spring Security is not aware of the internals of your application i.e. if you want to make your login page..

Copy directory from a jar file

http://stackoverflow.com/questions/1386809/copy-directory-from-a-jar-file

Presumably you'll do a getResourceAsStream to get at the internals of the zip which will logically look like a directory tree...

log4j vs logback

http://stackoverflow.com/questions/178215/log4j-vs-logback

using the SLF4J API. You could theoretically use the internals of the logback API directly for logging but that is highly discouraged...

Garbage Collection and Threads

http://stackoverflow.com/questions/2085544/garbage-collection-and-threads

that finding accurate detailed public descriptions of the internals of production garbage collectors is not easy. Though in the..

mocking a singleton class

http://stackoverflow.com/questions/2302179/mocking-a-singleton-class

Is it bad practice to use Reflection in Unit testing?

http://stackoverflow.com/questions/2811141/is-it-bad-practice-to-use-reflection-in-unit-testing

only using Reflection within one's own test code not the internals of the testing framework. JUnit and probably all other similar..

Load properties file in JAR?

http://stackoverflow.com/questions/2815404/load-properties-file-in-jar

to isolate webapplications from each other and from the internals of the application server. For example see the tomcat classloader..

Steps in the memory allocation process for Java objects

http://stackoverflow.com/questions/320980/steps-in-the-memory-allocation-process-for-java-objects

for the String. You typically don't know or care about the internals of the String implementation so just take it on trust that a..

How heavy are Java Monitors?

http://stackoverflow.com/questions/4068562/how-heavy-are-java-monitors

play in the contended case the code is here . The HotSpot internals wiki page also has some good in depth information . share improve..

What is the difference between swing and awt?

http://stackoverflow.com/questions/408820/what-is-the-difference-between-swing-and-awt

faster machines and I presume optimization of the Swing internals. Today a Swing application can run fast enough to be serviceable..

Java : Expose only a single package in a jar file

http://stackoverflow.com/questions/4388715/java-expose-only-a-single-package-in-a-jar-file

resolves the issue above but is unwieldy and exposes all internals of all subparts to each other. The language changes envisioned..

Why Java needs Serializable interface?

http://stackoverflow.com/questions/441196/why-java-needs-serializable-interface

serialization support of this form makes the class internals part of the public API which is why javadoc gives you the persisted..

Dynamically Changing log4j log level

http://stackoverflow.com/questions/4598702/dynamically-changing-log4j-log-level

Confused with Java Encapsulation Concept

http://stackoverflow.com/questions/5038336/confused-with-java-encapsulation-concept

from the outside of the class still hides what the internals of the class is doing it's still encapsulated. That said this..

When does one need to call revalidate() on a swing component to make it refresh, and when not?

http://stackoverflow.com/questions/5769813/when-does-one-need-to-call-revalidate-on-a-swing-component-to-make-it-refresh

improve this question The basic rule is never swing internals will take care of it. The basic exception to the rule is adding..

How to prevent JComboBox from becoming unresponsive when using a custom ListCellRenderer

http://stackoverflow.com/questions/5896282/how-to-prevent-jcombobox-from-becoming-unresponsive-when-using-a-custom-listcell

improve this question What happens is that the combo's internals try to find the preferred size dynamically. For doing so it..

read/write to Windows Registry using Java

http://stackoverflow.com/questions/62289/read-write-to-windows-registry-using-java

methods in the java.util.prefs.Preferences class. The internals of this class are complicated but the class itself is very easy..

Why can't strings be mutable in Java and .NET?

http://stackoverflow.com/questions/93091/why-cant-strings-be-mutable-in-java-and-net

can you share immutable objects but you can share their internals. Immutable objects make great building blocks for other objects..