Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #37.0K
~2K People Reached

5 Posted Topics

Member Avatar for ceyesuma

Yes, in the provide code there is a query. "from Person" this is a HQL (Hibernate Query Language) query. Hibernate will generate SQL from HQL runtime. "from Peson" will genereate an SQL query like "select <all hibernate mapped fields> from Person (Person class name will be changed with the table …

Member Avatar for ceyesuma
0
96
Member Avatar for ravikiran032

Don't put password as plain text in cookies. Use JCE API to encrypt the password.

Member Avatar for nsisupalan
0
310
Member Avatar for rapperhuj

Try somthing like this: [ICODE]package com.mine.test; import java.util.Calendar; import java.util.Timer; public class Initiater { /** * @param args */ public static void main(String[] args) { Timer clock = new Timer(); for(int i=0;i<2;++i) clock.scheduleAtFixedRate(new MyTimerTask(clock,i),Calendar.getInstance().getTime(),500); } }[/ICODE] [ICODE]package com.mine.test; import java.util.Timer; import java.util.TimerTask; public class MyTimerTask extends TimerTask { private int …

Member Avatar for nsisupalan
0
152
Member Avatar for ceyesuma

<id/> tag will define colum "PERSONID" as the primary key for the object Person. It is not required in hibenate that PERSONID colum is a primary key to be declared as a primary key for the object. Generator = increment means hibernate will treat this column like an AUTO GENERATED …

Member Avatar for nsisupalan
0
138
Member Avatar for giudf

Try [code]onchange="javascript:changeLocation();"[/code] [code=JavaScript]<script> function changeLocation() { window.location.href = 'utenti.jsp?mese=3'; } </script>[/code]

Member Avatar for nsisupalan
0
1K

The End.