just a follow up on this thread, I too have an application built on spring (core, AOP, MVC, webflow, springsecurity, ibatis, PostgreSQL) and currently considering moving from windows XP to linux....
Type: Posts; User: sattyani; Keyword(s):
just a follow up on this thread, I too have an application built on spring (core, AOP, MVC, webflow, springsecurity, ibatis, PostgreSQL) and currently considering moving from windows XP to linux....
I am already using log4j in my application, I was looking for the property name to enable logging for spring security. The line below did just what I want!
...
How to enable DEBUG level of spring security using log4j?
See this thread:
http://forum.springframework.org/showthread.php?t=58567
Thanks Martin,
the code compiles without any errors, the only problem I see is that I am not able to utilize the simplified namespace configuration provided by springsecurity 2.0.3. Seems that I...
I found this post regarding applying acegi security in spring webflow
http://forum.springframework.org/showthread.php?t=44257
within this post SWF-93...
your configuration are similar to what I have except that I didn't specify the last four properties (maxActive, maxidel, minidel, maxwait, and defaultreadonly. see if that makes a difference.
...
Hi all,
I am using spring webflow 1.0.5 and recentaly started working on the security part of the application, for that, I downloaded spring-security-2.0.3 and was able to configure it using...
Many thanks Kishore,
I tried your solution and it worked fine. Initially I used "spring-modules-0.8-all.jar" which I thought (should) contain all classes found in "spring-modules-cache.jar". ...
I am using ognl expression to display lookup data which I am loading at server startup.
the code below is taken from the search JSP:
<tr>
<td align="right"> Post Type</td>
<td...
I'ts OK, I was able to do it using javascript. I was hoping for something like javascript library that would perform these tasks simply by invoking a built in function.
check out this url, I just started looking at it.
http://static.springframework.org/spring-webflow/docs/2.0.x/reference/html/ch10.html
Not sure where to post this question, I am using webflow to create a search / details flow. During server startup lookup data gets loaded into the servlet context to avoid extra data access . the...
I am using List objects to store lookup items which are retrieved from the DB. all of the lookup items are stored in a HashMap.
In my jsp I am able to show drop down for any of the lists by using...
Thanks Gabriel for your reply
I would like to understand when should an application server be considered for an enterprise application.
To me it seems that everything (except for EJBs) can be handled by Spring (including...
One version of queryForList method enable you to specify max and skip parameters which enables you control resultset for each page. I am using it right now and it seems to be working fine.
I am using webflow and tomcat to do a sample web application, currently I was to get an idea how spring file upload works. what I need to do is create a page where a file is selected then uploaded to...
I am using spring webflow fileupload sample (spring-webflow-samples\fileupload) to upload images in my web application which is using tomcat.
I am not sure how to upload images under WEB-INF\images...
Actually i am using the following architecture:
1- View/GUI: JSP
2- Spring servletDispatcher as the controller
3- Spring controllers to handle all actions triggered by the GUI
4- Service layer to...
I created a POJO "service" class and used init-method to trigger the load of the lookup data. the loading works fine. The issue I have is how to get a reference to servlet context (or other container...
I need help to implement the following:
I have few lookup tables that I need to cache during application initialization in HashMaps, then use the cached HashMaps in populating the drop down windows...
Thanks lumpynose it worked! :)
iBatis DataMapper API provides a good solution, see link below.
http://ibatis.apache.org/docs/dotnet/datamapper/ch03s09.html#id386238
I will give it a try!
Another question though, how to...
I have a question regarding dynamic select statements using iBatis. Based on user input in the GUI (JSP page), the controller needs to verify the input values in the command object, generate select...