7
votes
How do you authenticate against an Active Directory server using Spring Security?
I had the same banging-my-head-against-the-wall experience you did, and ended up writing a custom authentication provider that does an LDAP query against the Active Directory server.
So my …
2
votes
How do you maintain java webapps in different staging environments?
I just use different Spring XML configuration files for each machine, and make sure that all the bits of configuration data that vary between machines is referenced by beans that load from those Sp …
6
votes
What is the best way to present data from a very large resultset?
It seems like this is a natural place to use pagination of your Hibernate results -- run the query at the Servlet level, and paginate results in a way similar to how this person describes:
…
1
vote
What is the best place to store a configuration file in a java web application (war) ?
The answer to this depends on how you intend to read and write that config file.
For example, the Spring framework gives you the ability to …
0
votes
How would you implement a secure static login credentials system in Java?
I'm unclear why transmitting the passwords over SSL -- via HTTPS -- is being considered "insecure" by your audit team. So when you ask for two things, it seems the second -- ensuring that the pass …
2
votes
Apache and J2EE sharing security realms/logins, single sign-on
Have you already tried to do this and failed? I ask because HTTP Basic authentication takes place purely by adding an HTTP header to a request; that is to say, once you're authenticated against a …
30
votes
Standard concise way to copy a file in Java?
As toolkit mentions above, Apache Commons IO is the way to go, specifically FileUti …
1
vote
How to add /usr/share/java libs to webapp’s classpath?
According to the Tomcat classloading documentation, you need to put any shared libs that should be avail …
0
votes
Spring Advice - submitting a form
The confusing thing to me about your question is the onSubmitAction() call -- are you using the Spring portlet code or the servlet code?
If you're using the portlet code, then you should be …
0
votes
5
votes
Java HashMap performance optimization / alternative
My first idea is to make sure you're initializing your HashMap appropriately. From the JavaDocs for HashMap …
2
votes
Using HTTPS with REST in Java
When you say "is there an easier way to... trust this cert", that's exactly what you're doing by adding the cert to your Java trust store. And this is very, very easy to do, and there's nothing yo …
1
vote
java value object
Dennis, if the code as you posted it is the exact code you're running, then this makes no sense -- the "User u = new User();" call would return you a new User object without any issues, since your …
2
votes
Sending an Email Using Commons-Email to Gmail
Don't you need to tell Commons Email that you're sending a TLS email: …
1
vote
Java Thread won’t pause on I/O operation
It seems that you're using an InputStream, and according to the JDK docs f …
