This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Thursday, July 18, 2013

UP POLICE CONSTABLE RECRUITMENT- UP POLICE BHARTI -2013

UP POLICE CONSTABLE RECRUITMENT:

                                                                                                                     UP Police invites applications for the posts of  constables. Uttar Pradesh Police Recruitment and Promotion Board (UPPRPB)  says that  the state police force is going to fill 20,000 New constables to fight against crime for which online applications are invited from 18.07.2013 to 18.08.2013.

NUMBER OF POSTS:20000

Qualification: Applicants should have 10+2 minimum.

Age Limit : Minimum 18 and Maximum 25  years ( age relaxation will be given by up police  as per rules)

Mainly you see these link.



Wednesday, July 17, 2013

Hibernate use in real life - Use of Hibernate - How to use Hibernate

Hibernate use in real life:

Mainly Hibernate use many things.It is a very use full framework of hibernate and common of every framework.Hibernate basically use to relationship but it is use to store the entity and many things.Hibernate is common in many thing like that is used a every framework and association a value of data relationship.
                                                                    Many use in hibernate is given below and Hibernate importance is as follows.

Natural Programming Model.
HighPerformance.
Comprehensive Query Facilities.
Extensibility.
Transparent Persistence.

Hibernate use in java:
                                                                              Hsibernate is use in java is very important because it is a very flexible and mainly use in java.It uses are difficult and commonly many thing and basically is use java entities and more details use is given bellow.

1.Mapping.
2. Entinties.
3.Component.
4.persistence.
5.History.
6.Integration.  

Tuesday, June 4, 2013

UP Board results - UP Board 12th results - 10th and 12th results of UP BOARD

      UP Board Results:   

                                                                           UP Board results is a very important of UP Board student.
and see the results in this site.



About Uttar Pradesh (UP) Board
The board was founded in the year 1921, and it is very good workink of up board results and held their first examination in the year 1923.The UP Board has been the first in the country to have adopted the 10+2 system.

UP board is at the moment head quartered in Allahabad and has four regional offices in Meerut, Varanasi, Bareilly and Allahabad. - See more at: http://www.jagranjosh.com/results/up-board-result-2013-i3000#sthash.TNj1LSgP.dpuf

Monday, June 3, 2013

SQL Create data base - Create data base in SQL - SQL create Index

                 Create a data base in SQL:

                                                                                           Create a new data base in SQL is not a hard work it is a very easy.Create a new data and many files used to store data base from the detached file.


Syntex: 
              create database database_name;

Example: 
                 may be data base name is my_database.and this is example through  that
                                   create database my_database;

but table syntex is diffrent is given bellow.

Syntex for table:
                             create table table_name
                             (
                              column name1 type;
                              column name2 type;
                              ................................
                             )
                           




Wednesday, May 15, 2013

SQL Select Statement - Select Statement in SQL - Select Statement

SQL SELECT STATEMENT:


The SQL SELECT statement allows you to retrieve records from one or more tables in your SQL database.A query may retrieve information from specified columns or from all of the columns in the table.

Syntex:

SELECT * FROM Table_Name;

Wednesday, February 13, 2013

Spring Example - Spring Framework - Spring Tutorial - A Simple Example in Spring

Spring Example:

  
 The Spring Framework represents a dependency injection / inversion of control container framework for the Java platform. Furthermore Spring offers a lot of additional functions.Spring framework was initially.
                                   Written by Rod Johnson and was first released under the Apache 2.0 license in June 2003.

Use Case:

Test Class             -      To create a main class in eclips.
Triangle Class       -      To create getter and setter in Triangle class.
Point Class            -      To create a point set the value.
Spring Class          -      To create a beans

Test Java class:

package Tutorial;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Test
{
      public static void main(String[] args)
       {
              ApplicationContext aap=new ClassPathXmlApplicationContext("spring.xml");
              Triangle t=(Triangle)aap.getBean("tri");
              t.draw();
       }
}

Triangle class in Java:

package Tutorial;

import java.util.List;

public class Triangle
{
      
       Point point1;
       Point point2;
       Point point3;
      
public Point getPoint1() {
              return point1;
       }


       public void setPoint1(Point point1) {
              this.point1 = point1;
       }

       public Point getPoint2() {
              return point2;
       }

       public void setPoint2(Point point2) {
              this.point2 = point2;
       }

       public Point getPoint3() {
              return point3;
       }

       public void setPoint3(Point point3) {
              this.point3 = point3;
       }

public void draw()
{
      
      
       System.out.println("point1" + point1.getX()+"\tpoint2" + point1.getY());
}
}

Point Class in Java:

package Tutorial;

public class Point {
 int x;
 int y;
public int getX() {
       return x;
}
public void setX(int x) {
       this.x = x;
}
public int getY() {
       return y;
}
public void setY(int y) {
       this.y = y;
}  
}

Spring Class in Xml:

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd" >

<beans>
<bean id="tri" class="Tutorial.Triangle" autowire="constructor" >
  
</bean>  

 <bean id="tri1" class="Tutorial.Point" >
 <property name="x" value="10"/>
 <property name="y" value="20"/>
 </bean>
 
</beans>