The problem solved by removing the job information in the qrtz_* tables
Type: Posts; User: ssthw; Keyword(s):
The problem solved by removing the job information in the qrtz_* tables
Here is my setting, but the program runs, it can't get/set the daysCheck value.
<bean id="methodInvokingJobDetail" class="org.springframework.scheduling.quartz.JobDetailBean">
...
If I have a client wants to access service across multiple server, how should I config?
For example, I have a Client (client A) and Server B, C, D.
Client A can choose to connect Server B, C or D...
How can I solve this problem?
ERROR [http-8080-Processor23] [remoting].invoke(253) | Servlet.service() for servlet remoting threw exception...
Thanks a lot.
Can I use Acegi in jdk 1.4?
Yup, the tutorial is really useful for beginner.
I can set the FilterSecurityInterceptor
By the way, is it possible to define these parameters
/secure/extreme/**=ROLE_SUPERVISOR...
Okay, thanks a lot for your help. I will try this also.
But I can access a.jsp and b.jsp even I shut down the server and restart again...
I see, maybe I didn't understand the flow of the Acegi and didn't discover it handles that for me.
So, maybe I ask the last question? For example, I got three jsp(s),
login.jsp, a.jsp, b.jsp.
...
With your guidelines, I can now do the username and password checking.
But I still want to set the user as the session attribute, however, if I perform the session.setAttribute("user",...
Thanks for your help. The tutorial is useful.
Oh, I think I get what you mean.
I mean for example when my User class is like that:
Class User
{
private String username;
pricate String password;
}
and I want my jsp page...
Oh, that means the name must be 'j_username' and 'j_password'? If I want to use the spring bind the username and password to a class, I need to change the instance of the User class to 'j_username'...
I am developing a login jsp page, and I got my own User class, and in my xml, I config as follows:
<bean id="memoryAuthenticationDao" class="org.acegisecurity.userdetails.jdbc.JdbcDaoImpl">...
I am building a web application which I want to build an authentication system for accessing different jsp(s).
I got some tables storing the user information (username, password, access level,...
Oh, I solve the problem by changing the groupBy="ug.usergroup_id" to groupBy="usergroupId".
I am using iBatis to retrieve records from databases, is there any method I can do this select statement once and map to the domain object directly?
I want to select out all the usergroup and...
I am building the web application where it has accessed to the database.
I am using the iBatis. When I run the web application, I can see the following log in the console...
DEBUG...
I have tried your method, it works , thanks a lot!!!
I have a jsp page that list a List of Users, and each user information can be edited. When 1 or 2 users are edited, I want to validate only these two users, how can I do this in the validator?
I...
Oh, very detailed! I think I understand much more now, really thanks for your help, let me try that! =)
Thanks!!!:)
Sorry, actually, I need to handle two things besides the original command from Domain User, so totally 3 things...
1. List of User (List of the Domain User)
2. additional data (e.g. total number...
So, if I want to bind a new row of additional field in the initBinder, what should I do? I am not quite understood on how to use the bind...
For example ...
I do this...
protected Object...
Then I can't use the <spring:bind> for the list of user...
When I edit the information of list of user, how can I get back the values changed on the JSP?
and how can I get back the list(when...