- 博客(31)
- 收藏
- 关注
原创 vue跨域cookie问题
前端配置withCredentials =truespringboot后端配置@Beanpublic CorsFilter corsFilter() { final UrlBasedCorsConfigurationSource urlBasedCorsConfigurationSource = new UrlBasedCorsConfigurationSource(); ...
2019-09-20 11:43:03 682
原创 Springboot2.x+sharding-jdbc+mysql读写分离
mysql主从备份:https://my.oschina.net/u/3773384/blog/1810111#comment-listsharding-shpere主从分离:https://shardingsphere.apache.org/document/current/cn/manual/sharding-jdbc/usage/read-write-splitting/另外注意:j...
2019-05-29 18:33:52 477
原创 springboot2集成oauth2
最近拿oauth2练手,搭了oauth2的demo。服务端配置/** * oauth2配置 * @author hao * @Date 2018-04-19 */public class OAuth2ServerConfig { /** * oauth2资源服务器配置 * @author kdlq-hao */ @Configuration @...
2019-04-14 22:46:31 1223
原创 springboot使用sharding-jdbc分库分表
1,引入依赖<dependency> <groupId>io.shardingsphere</groupId> <artifactId>sharding-core</artifactId> <version>2.0.3</version></dependency&
2019-02-16 16:09:54 1635 1
原创 JPA 2.x.x版本新特性(持续更新)
1、T findOne(ID id) 已取消,改为 Optional<S> findOne(Example<S> example)和Optional<T> findById(ID id),返回的都是Optional对象。使用如下public ActivityEntity get(Integer id) { ActivityEntity activity ...
2019-01-17 15:48:29 1022
原创 java访问联图接口
构造联图接口url private String getQRCodeUrl(String text, String logoUrl, int size) { StringBuilder sb = new StringBuilder("http://qr.liantu.com/api.php?text="); sb.append(text); sb.append("&lo...
2018-12-07 15:18:51 221
转载 spring jpa自定义复杂查询
public class StudentBaseRepositoryImpl implements StudentBaseRepositoryCustom { @Autowired @PersistenceContext private EntityManager entityManager; @Override public List<Objec...
2018-10-31 17:53:56 724
原创 Springboot整合redis
首先需自行安装redis数据库springboot整合redis十分简单,只需要在application配置文件里配置:spring: redis: host: localhost database: 0 port: 6379 timeout: 3000即可通过注入redisTemplate操作redis数据库:@AutowiredRe...
2018-10-26 11:03:20 179
原创 springboot前后端分离之跨域
springmvc有多种处理跨域的方法,介绍最简单的一种:@Configurationpublic class WebMvcConfig extends WebMvcConfigurerAdapter { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping...
2018-10-18 20:03:09 278
转载 Spring Hibernate JPA 联表查询 复杂查询
正文:一、Hibernate VS Mybatis1、简介 Hibernate对数据库结构提供了较为完整的封装,Hibernate的O/R Mapping实现了POJO 和数据库表之间的映射,以及SQL 的自动生成和执行。程序员往往只需定义好了POJO 到数据库表的映射关系,即可通过Hibernate 提供的方法完成持久层操作。程序员甚至不需要对SQL 的熟练掌握, Hiber...
2018-10-13 09:27:42 305
原创 springboot使用@ConfigurationProperties(prefix="")加载配置
@ConfigurationProperties 加在类上或方法上,可以和@PropertySource组合使用加在方法上:@Bean("primaryDataSource")@Primary@ConfigurationProperties("primary.datasource")public DataSource buildPrimaryDataSource() { retu...
2018-08-23 16:33:29 32683
原创 jpa使用注解生成表时无外键
刚入手springboot时,在使用jpa实体注解生成表无外键。是因为jpa不知道使用何种Dialect创建,默认没有外键。在配置文件加上database-platform: org.hibernate.dialect.MySQL5InnoDBDialect就好了...
2018-07-26 16:33:54 3869 2
原创 图片base64转字符串传输
String base64; base64 = request.getParameter("picture").replace(" ", "+"); System.out.println(base64); //Base64解码 Base64.Decoder decoder = Base64.getDecoder(); byte[] picture = decoder...
2018-07-19 16:14:24 661
原创 springboot里的junit测试
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-test</artifactId> <version>2.0.3.RELEASE</version>
2018-07-17 15:51:33 226
原创 服务端文件下载功能及客户端使用apache.commons.httpclient下载
@RequestMapping("/jar-file") public void downLoadFile(String downloadFilePath, HttpServletResponse response) throws IOException { File file = new File(filePath + downloadFilePath); if (!file.e...
2018-06-25 16:51:36 492
转载 解决Eclipse无法添加Tomcat服务器的问题
eclipse配置好以后,如果Tomcat服务器在文件系统的位置发生了变化,则需要重新配置Tomcat服务器,这时会遇到无法设置服务器的问题即图中框起来的部分无法进行操作,这时需要关闭Eclipse删除WorkSpace目录下/.metadata/.plugins/org.eclipse.core.runtime/.settings目录中的org.eclipse.wst.server.core.p...
2018-06-20 10:04:42 469
转载 HTTP协议状态码详解(HTTP Status Code)
使用ASP.NET/PHP/JSP 或者javascript都会用到http的不同状态,一些常见的状态码为: 200 – 服务器成功返回网页 404 – 请求的网页不存在 503 – 服务不可用 1xx(临时响应) 表示临时响应并需要请求者继续执行操作的状态代码。代码 说明 100 (继续) 请求者应当继续提出请求。 服务器返回此代码表示已收到请求的第一部分,正在等待其余部分。 101 ...
2018-06-13 10:45:01 214
转载 SpringBoot配置属性之DataSource
SpringBoot配置属性系列SpringBoot配置属性之MVCSpringBoot配置属性之ServerSpringBoot配置属性之DataSourceSpringBoot配置属性之NOSQLSpringBoot配置属性之MQSpringBoot配置属性之SecuritySpringBoot配置属性之MigrationSpringBoot配置属性之其他另外附上个人关于springboot的...
2018-06-12 10:13:52 386
转载 ubuntu安装wine1.6依赖错误
Add apt-repository using代码:sudo add-apt-repository ppa:ubuntu-wine/ppaInstall Wine 1.6 from repository:代码:sudo apt-get update && sudo apt-get install wine1.6不行的话,先删除所有与wine相关的软件,额,或许是这么说的吧。Uni...
2018-06-11 12:12:59 3024
转载 深入Spring Boot: 那些注入不了的 Spring 占位符(${} 表达式)
Spring里的占位符spring里的占位符通常表现的形式是:123<bean id="dataSource" destroy-method="close" class="org.apache.commons.dbcp.BasicDataSource"> <property name="url" value="${jdbc.url}"/>&
2018-06-06 17:14:45 480
转载 slf4j+logback配置方式和logback.groovy配置文件
最近看到slf4j+logback的日志方案,并且介绍说,与log4j出自同一作者且做了不少优化,所以决定从commons-logging+log4j切换过来。logback官网:(该作者即为log4j的作者)http://logback.qos.ch/切换方式非常简单,在原有基础上加入如下jar包即可。slf4j-api-1.6.2.jarjcl-over-slf4j-1.6.2.jar \\用...
2018-06-04 14:13:51 4221 1
转载 MySQL DATE_FORMAT() 函数
DATE_FORMAT() 函数用于以不同的格式显示日期/时间数据。语法DATE_FORMAT(date,format)date 参数是合法的日期。format 规定日期/时间的输出格式。可以使用的格式有:格式描述%a缩写星期名%b缩写月名%c月,数值%D带有英文前缀的月中的天%d月的天,数值(00-31)%e月的天,数值(0-31)%f微秒%H小时 (00-23)%h小时 (01-12)%I小时...
2018-05-21 18:11:27 134
转载 正则表达式
例:包含admin且不包含abc。 ^((?!abc).)*$ 查资料知道:[plain] view plain copy(?!pattern) 负向预查,在任何不匹配 pattern 的字符串开始处匹配查找字符串。这是一个非获取匹配,也就是说,该匹配不需要获取供以后使用。例如'Windows (?!95|98|NT|2000)' 能匹配 "Windows 3.1" 中的 "Windows",但不...
2018-05-17 17:05:03 191
原创 Jquery validate验证结束日期大于开始日期
jQuery.validator.methods.compareDate = function(value, element, param) { //var startDate = jQuery(param).val() + ":00";补全yyyy-MM-dd HH:mm:ss格式 //value = value + ":00"; var...
2018-04-19 19:31:09 2901
转载 SpringBoot通过代码注册Servlet、Fillter、Listener
Spring Boot提供了 ServletRegistrationBean,FilterRegistrationBean,ServletListenerRegistrationBean这3个东西来进行配置Servlet、Filter、Listener。通过自定义配置文件WebConfig.java注册Servlet、Filter、Listener。[java] view plain copyim...
2018-04-11 15:10:25 600
原创 spring注解集成jpa
1,添加依赖jar包,注意spring和hibernate版本对应<dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-jpa</artifactId> <...
2018-04-04 14:13:11 298
转载 手把手教你从最基本的Java工程搭建SpringMVC+SpringDataJPA+Hibernate(含源码下载)
版权声明:http://blog.csdn.net/anxpp https://blog.csdn.net/anxpp/article/details/51415366目录(?)[+]转载请注明出处:http://blog.csdn.net/anxpp/article/details/51415366,谢谢! 本文会介绍从一个最基本的java工程,到Web工程,到集成Spring、Sprin...
2018-04-04 14:03:01 223
转载 Spring Data JPA 简单查询--方法定义规则
一、常用规则速查 1 And 并且 2 Or 或 3 Is,Equals 等于 4 Between 两者之间 5 LessThan 小于 6 LessThanEqual 小于等于 7 GreaterThan 大于 8 GreaterThanEqual 大于等于 9 After 之后(时间...
2018-04-03 14:27:05 439
原创 spring框架使用properties或yml配置信息
1,按格式在properties或yml文件中保存信息2,将配置文件读入到bean,(注意:在哪个上下文环境装配,spring context还是在springmvc context)@Bean public PropertyPlaceholderConfigurer propertyConfigurer(){ PropertyPlaceholderConfigurer property=new...
2018-03-31 18:03:07 2091
原创 上传图片相关代码
1, html上传图片生成缩略图2, <html> 3, <head> 4, <meta name="viewport" content="width=device-width" /> 5, <title></title> 6, 7, <script
2018-03-30 18:51:17 271
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人