javatips.net
EclipseLink JPA With H2 Database
http://www.javatips.net/blog/2014/09/eclipselink-jpa-with-h2-database
EclipseLink JPA With H2 Database. September 03, 2014. EclipseLink JPA With H2 Database. Explains step by step details of setting / configuring Java Persistence JPA With EclipseLink And H2. How To Configure EclipseLink JPA With H2? Java Persistence API, is a standard interface which wraps different ORM tools such as EclipseLink, Hibernate, OpenJPA etc. Ie; you can able to change Hibernate implementation to EclipseLink implementation without changing the code base. EclipseLink JPA With MySql. Comibm.db...
javatips.net
Getting IP Address Using CXF
http://www.javatips.net/blog/2012/03/getting-ip-address-using-cxf
Getting IP Address Using CXF. March 18, 2012. Getting IP Address Using CXF. Explains about How to get IP Address of client who is consuming the CXF service. I am showing here, How to capture the remote IP Address of clients, both SOAP and RESTFul services. Message message = PhaseInterceptorChain.getCurrentMessage(); HttpServletRequest request = (HttpServletRequest)message.get(AbstractHTTPDestination.HTTP REQUEST); request.getRemoteAddr(). Applicable for both JAX-WS and JAX-RS based services. Name = name;.
javatips.net
ECLIPSE Tutorials
http://www.javatips.net/eclipse
Trace SOAP message Using Eclipse IDE. December 20, 2014. Trace SOAP message Using Eclipse IDE. Explains step by step details of How to debugging web service using Eclipse IDE. By using Eclipse TCP/IP monitor. We can check the data flowing through TCP network. TCP/IP monitor placed intermediate to a consumer and a server. The consumer is made to contact with TCP/IP monitor, and it further send the data to the server and will shows on in its Graphical User Interface(GUI). November 28, 2013. October 26, 2013.
javatips.net
Hibernate Tutorial
http://www.javatips.net/blog/2011/12/hibernate-tutorial
December 09, 2011. Explains step by step details of setting / configuring Hibernate with Eclipse. Is popular open source ORM (Object Relation Mapping) tool for Java platform, for mapping an entity to a traditional relational database like Oracle, MySQL etc. By using Hibernate, we can done database operations like Create, Read, Update and Delete etc, with very little code. We can also use Hibernate Query Language (HQL) for the jdbc operation, you can see an example of Hibernate Query Tutorial. Http:/ hibe...
javatips.net
JSTL Tutorials
http://www.javatips.net/jstl
Evaluate/Check List/Collection Is Empty In JSTL. April 19, 2014. Evaluate/Check List/Collection Is Empty In JSTL explains about How to evaluate whether a List or Collection is empty using JSTL empty. Consider the example here, a JSP page which contains a HashMap with lot of key value pairs in it and we need check this list is empty or not. For evaluating a Collection is empty or not inside JSTL, we can use empty operator. By using this operator we can check Collection is empty or not. JSTL Size Of Map.
javatips.net
STRUTS Tutorials
http://www.javatips.net/struts
Struts 2 XML Validation Example. August 12, 2013. Struts 2 XML Validation Example. Explains about step by step example of Struts2 XML Validation With Eclipse. Apache Struts 2, is a popular Java Model-View-Contraller (MVC) framework, which is developed by merging WebWork and Struts 1.x web frameworks. Struts 2 have lot off difference with struts 1, struts 2 have implemented with an idea of convention over configuration, it also have many annotations in order to increase the developer productivity. Apache ...
javatips.net
Spring MVC Validation Example
http://www.javatips.net/blog/2014/10/spring-mvc-validation-example
Spring MVC Validation Example. October 18, 2014. Spring MVC Validation Example. Explains about handling the form validation in Spring MVC web application, Here we are using eclipse ide as dev environment. Spring version 4.0 provides full support for the latest Java 8 features. Spring MVC is a popular Java Model-View-Contraller (MVC) framework. Basically spring is request based framework, which revolve around DispatcherServlet. That dispatches the requests with the help of different lifecycle interfaces.
javatips.net
Spring Tutorial
http://www.javatips.net/blog/2011/12/spring-tutorial
December 09, 2011. Explains step by step details of setting / configuring Spring with Eclipse. Is a free and open source framework using for the development of java enterprise applications. Spring framework consists of several different modules including Aspect Oriented Programming, Inversion Control, Model View Controller, Data Access, Transaction Management, Batch Processing, Remote Access and Spring JDBC Template will really ease the development effort of coding team. Spring JDBC Template Tutorial.
javatips.net
Detect Device Type In Java Web Application
http://www.javatips.net/blog/2014/09/detect-device-type-in-java-web-application
Detect Device Type In Java Web Application. September 29, 2014. Detect Device Type In Java Web Application. Explain about identifying the device type such as desktop, tablet or mobile of client by accessing your Website. You can forward to different urls. How to identify whether a user request is coming from Mobile/Tablet/Desktop? For identifying the device type (whether the request is coming from mobile, tablet or desktop), you need to parse User-Agents. 1) By Using UADetector. Here we are creating a se...
javatips.net
WEBSERVICE Tutorials
http://www.javatips.net/webservice
CXF With JBoss Tutorial. January 03, 2015. CXF With JBoss Tutorial. Explains about the integration of CXF Framework with Jboss server. Is a free and open source project, and a fully featured Webservice framework.It helps you building webservices using different front-end API's, like as JAX-RS and JAX-WS. Https:/ cxf.apache.org/. Trace SOAP request/response using JAX-WS. December 27, 2014. Trace SOAP request/response using JAX-WS. After the deployment you can access the below url. June 28, 2014. In this t...