You are on page 1of 2

String PERSISTENCE_UNIT_NAME = "JPATest";

OpenJPAEntityManagerFactory factory = (OpenJPAEntityManagerFactory) Pers


istence
.createEntityManagerFactory(PERSISTENCE_UNIT_NAME);
OpenJPAEntityManager em = factory.createEntityManager();
OpenJPAEntityManager oem = em.unwrap(OpenJPAEntityManager.class);
Connection jdbcConnection = (Connection) oem.getConnection();
http://intervencion.castillalamancha.es/intregracion-con-factura-electronica-jcc
m
http://re-orientation.com/manual-paso-paso-app-integral-spring-framework
http://keylesson.com/index.php/2014/11/20/spring-security-database-authenticatio
n-1244/
https://springframework.guru/spring-boot-web-application-part-2-using-thymeleaf/
https://springframework.guru/tag/thymeleaf/
http://crunchify.com/simplest-spring-mvc-hello-world-example-tutorial-spring-mod
el-view-controller-tips/
http://hellokoding.com/spring-mvc-4-hello-world-example-with-xml-configuration-m
aven-and-thymeleaf/
https://www.javacodegeeks.com/2013/03/implement-bootstrap-pagination-with-spring
-data-and-thymeleaf.html
http://www.concretepage.com/spring-4/spring-4-mvc-thymeleaf-annotation-integrati
on-tutorial-with-internationalization-example-using-springtemplateengine-and-thy
meleafviewresolver
https://www.youtube.com/watch?v=2LqQwjGRx_A
SET SERVEROUTPUT ON
declare
req utl_http.req;
res utl_http.resp;
url varchar2(4000) := 'http://localhost:8088/springapp/yeah';
--name varchar2(4000);
buffer varchar2(4000);
begin
req := utl_http.begin_request(url, 'GET',' HTTP/1.1');
--utl_http.set_header(req, 'user-agent', 'mozilla/4.0');
--utl_http.set_header(req, 'content-type', 'application/json');
--utl_http.set_header(req, 'Content-Length', length(content));
--utl_http.write_text(req, content);
res := utl_http.get_response(req);
-- process the response from the HTTP call
begin
loop
utl_http.read_line(res, buffer);
dbms_output.put_line(buffer);
end loop;
utl_http.end_response(res);
exception

when utl_http.end_of_body
then
utl_http.end_response(res);
end;
end;
http://jsfiddle.net/QLQRT/
http://www.findecodigo.com/agregar-filas-a-tabla-con-jquery/
https://www.fest300.com/festivals/darwin-beer-can-regatta
http://www.absolutaustralia.com/botes-de-latas-de-cerveza-en-la-regatta-de-darwi
n/
http://blogs.lainformacion.com/futuretech/2012/07/16/extravacanz-barco-latas-flo
tar/
http://www.javavids.com/video/how-to-read-data-from-blob-using-jpa-hibernate.htm
l

You might also like