Hi,
I'm using jdbcjobstore and have 3 triggers, executing 3 different jobs on the same table. It runs for about a minute and then all 3 triggers changes to error state?
schedulerContext.xml
...
Type: Posts; User: Hanlie; Keyword(s):
Hi,
I'm using jdbcjobstore and have 3 triggers, executing 3 different jobs on the same table. It runs for about a minute and then all 3 triggers changes to error state?
schedulerContext.xml
...
Outside --> It's another app doing the insert into db.
So it will recognise an insert/update from outside my application? I thought it will only pick up the event when using the hibernate template?
Thanks
Not sure what I'm looking for, but let me explain.
I have a system that can only interface by means of database insert/updates. When a record gets inserted, I want to re-use my business logic of...
Good day,
I have 2 multiple-selects (populating it from ArrayList's) and uses javascript to move items from the one to the other.
When submitting I only want the values remaining in the 2...
How do I 'code' number format validation, using patterns and Valang?
Pattern: [0-9]{1,}\\.[0-9]{2}
Is there javadocs for valang? If so, where can I find it?
Thanks
Hi,
Below my jsp code: How do I bind the checkbox to my formbacking object using the bind tag?
<spring:bind path="linkedAccounts.lsaList">
<c:forEach...
Good day all,
My scenario is as follows:
I'm displaying a list of accounts, obtained from the database. I'm using the accountId as the value of my checkbox, in order for the user to select...
Yes, we are using the portlet specification.
Please give me instructions on how to proceed.
The form gets populated with the following:
See attached 1.jpg
Then I clear all the fields and submit the form. It does the validation, but you will note that the fields I did not validate, are...
Hi,
I have 2 seperate portlets for my application. One for public, meaning users are not authenticated, and one for protected users, meaning the user is authenticated.
How can I navigate from...
Thanks all,
Below my code:
Controller:
public class UpdateServiceAccountController extends SimpleFormController implements InitializingBean {
private static final Logger LOG =...
Hi,
I'm using a simpleFormController with a formbacking object. I would only like to validate 3 of the 5 fields on the jsp. When I click on the submit button, it does the validation of the 3...
Hi,
you have to override the onSubmitAction method in the controller. See below.
public void onSubmitAction(ActionRequest request, ActionResponse response,
...
Good day,
I'm using a SimpleFormController to submit a form, perform validations and then route it to a success view. I need to pass a parameter back to the successview. At this stage my...