Spring Boot 2 Rest Api Example

摘要: 以下,将以一个post、get返回json数据格式的例子来讲解Rest Apis。 1. Maven Dependencies. 最重要的是 spring-boot-starter-parent 和 spring-boot-starter-web。 Starter web 依赖包含了spring-w 阅读全文
posted @ 2019-07-05 08:38 chenqr11 阅读(217) 评论(0) 推荐(0) 编辑

Spring boot hibernate Configuration Example

摘要: 1. pom.xml spring-boot-starter-data-jpa 包含了 spring data, hibernate, HikariCP, JPA API, JPA Implementation (默认为hibernate), JDBC和其他库. h2数据库应用 2. Create 阅读全文
posted @ 2019-07-05 01:13 chenqr11 阅读(377) 评论(0) 推荐(0) 编辑

Springboot War Packaging Example

摘要: 默认情况,springboot 默认打包形式是 jar。但有些服务像JBoss, weblogic, 或者tomcat需要的是war包。 1. 在pomx.xml声明war包 阅读全文
posted @ 2019-07-05 00:56 chenqr11 阅读(248) 评论(0) 推荐(0) 编辑

Spring Boot SOAP Client – WebServiceTemplate Example

摘要: JAXB maven plugin 用于生成 Java class。 Technology Stack for Spring boot soap client maven、JDK1.8 - 开发环境 springboot - 基础框架 maven-jaxb2-plugin Spring-boot C 阅读全文
posted @ 2019-07-04 02:11 chenqr11 阅读(2156) 评论(0) 推荐(0) 编辑

Spring Boot Soap Webservice Example

摘要: 1. Technology stack maven, eclipse, JDK1.8 - Development enviroment Springboot - Underlying application framework wsdl4j - for publishing wsdl for our 阅读全文
posted @ 2019-07-04 01:26 chenqr11 阅读(406) 评论(0) 推荐(0) 编辑

Css 定位注意事项

摘要: demo: file:///Users/qiaorui.chen/Site/css/helloworld.html 1. position: absolute; // 绝对定位,参考目标是窗口,会受滚动条会影响。 2. position: relative; // 相对定位,当父类使用relativ 阅读全文
posted @ 2019-06-29 13:37 chenqr11 阅读(194) 评论(0) 推荐(0) 编辑

css basic

摘要: font-size:36pt; // 字体大小 margin-left:50px; // 左外边距 <p><a href="http://www.w3cschool.cn" target="_blank">This is a link</a></p> // link declare color:re 阅读全文
posted @ 2019-06-24 23:53 chenqr11 阅读(206) 评论(0) 推荐(0) 编辑

Java Array

摘要: refer to https://www.javatpoint.com/array-in-java Nomally, array is a collection of similar type of elements that hava a contiguous memory location. J 阅读全文
posted @ 2019-02-20 13:53 chenqr11 阅读(88) 评论(0) 推荐(0) 编辑

Java static keyword

摘要: The static in java is used for memory management mainly. We can apply static with variables, methods, blocks and class. 1) Java static variable If you 阅读全文
posted @ 2019-02-15 02:24 chenqr11 阅读(181) 评论(0) 推荐(0) 编辑

Final Keyword In Java

摘要: The final keyword in java is used to restrict the user. The java final keyword can be used in many context. like: 1. variable 2. method 3. class 1) Ja 阅读全文
posted @ 2019-02-13 11:58 chenqr11 阅读(251) 评论(0) 推荐(0) 编辑