Design Patterns (java) — Strategy with fields. Ever acceptable?
Both here on stack overflow and on Java Effective it is suggested that strategy design patterns should be stateless. In fact in the book it is also suggested to make each strategy object a singleton.
Software licensing particulars
I have spent a lot of time examining the various (major) software licenses and ultimately have decided upon using the MIT Licenses for my open source projects, and the Microsoft Reference License (MS-RSL) for my proprietary projects.
why is a naturally ordered set generated at 9 but not 10 digits
code found at: https://softwareengineering.stackexchange.com/q/158606/44933
Java solution for mutual authentication with smart card
I need to develop a Java solution for mutual authentication between Tomcat 6 (server) and SmartCard “IDGo 300” (client).
Conceptually what does it mean when it is said that each thread gets its own stack?
I have been reading Java Concurrency in Practice by Brian Goetz and inside the section Stack Confinement it is mentioned that each thread gets its own stack and so local variables are intrinsically confined to the executing thread; they exist on the executing threads stack, which is not accessible to other threads. What does he mean that each thread has its own execution stack ?
Should java developers know about garbage collection algorithms? [closed]
Closed 9 years ago.
Why null pointer instead of class cast?
In Java:
Why was the Java App store discontinued? [closed]
Closed 12 years ago.
How to properly design classes for a big project?
If we need to represent classes in a class diagram for a big project that is not completely designed yet, and the classes have to be actual tables in a database, how would we predict and design the classes?
Java sql annotations ManyToMany relationships
I was wondering your thoughts on the best way to implement a SQL ManyToMany relationship in Java using annotations – in this case eBeans – where there is extra data associated with the join.