java Programming Glossary: homegrown
Java performance timing library http://stackoverflow.com/questions/1237181/java-performance-timing-library any good timing library that helps with this problem Also homegrown code will be accepted. NB A profiler is not a solution here..
Authorization redirect on session expiration does not work on submitting a JSF form, page stays the same http://stackoverflow.com/questions/14580267/authorization-redirect-on-session-expiration-does-not-work-on-submitting-a-jsf-f the job. You should use a servlet filter for the job not a homegrown servlet and for sure not one which supplants the FacesServlet..
How to upload files to server using JSP/Servlet? http://stackoverflow.com/questions/2422468/how-to-upload-files-to-server-using-jsp-servlet You shouldn't try to do this on your own or copypaste some homegrown library less code found elsewhere on the Internet. Many online..
Preferred Java way to ping a HTTP Url for availability http://stackoverflow.com/questions/3584210/preferred-java-way-to-ping-a-http-url-for-availability you need to take into account that some poor webapps or homegrown servers may return HTTP 405 error for a HEAD i.e. not available..
Where's the official JSP tutorial http://stackoverflow.com/questions/4845032/wheres-the-official-jsp-tutorial with other servlets than the FacesServlet either homegrown or provided by a 3rd party request based MVC framework only..
Should I use Java date and time classes or go with a 3rd party library like Joda Time? http://stackoverflow.com/questions/589870/should-i-use-java-date-and-time-classes-or-go-with-a-3rd-party-library-like-joda much more likely to be familiar with Joda than with your homegrown API You're likely to get it wrong for anything beyond the simplest..
Prevent accessing restricted page without login in Jsf2 http://stackoverflow.com/questions/6883430/prevent-accessing-restricted-page-without-login-in-jsf2 on how you have programmed the login. You seem to be using homegrown authentication wherein you set the logged in user as a property..
Protected URLs leaking unprotected components of the webapge to unauthenticated users http://stackoverflow.com/questions/7872265/protected-urls-leaking-unprotected-components-of-the-webapge-to-unauthenticated managed authentication CMS . The Filter is part of homegrown authentication. To restrict access to certain resources with..
Mojarra is not defined. CommandLink not making a request http://stackoverflow.com/questions/9248047/mojarra-is-not-defined-commandlink-not-making-a-request the jsf.js resource request in some way. Perhaps some homegrown authentication filter which is not doing its job entirely right...
How do you query object collections in Java (Criteria/SQL-like)? http://stackoverflow.com/questions/93417/how-do-you-query-object-collections-in-java-criteria-sql-like has anyone used this or have any experience with other homegrown solutions java sql collections share improve this question..
|