spring
文章平均质量分 88
中国lanwp
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
spring datasource配置 连接池
文章目录hikari-cp1.引入依赖2. spring配置3. springboot配置druid1.引入maven依赖2.spring配置dbcp21.引入依赖2.spring配置spring配置hikari-cp1.引入依赖<!-- https://mvnrepository.com/artifact/com.zaxxer/HikariCP --><dependency> <groupId>com.zaxxer</groupId>原创 2020-05-31 21:58:58 · 3396 阅读 · 1 评论 -
spring mvc纯注解配置
spring mvc纯注解配置参考Spring MVC4 纯注解配置教程 https://www.cnblogs.com/csonezp/p/5315725.htmlspring和springmvc纯注解整合 https://blog.csdn.net/sssyyyy7/article/details/906131621.环境mavenspring5.2.62.启动web项目中启动...原创 2020-06-07 17:16:34 · 1003 阅读 · 0 评论 -
spring profile
文章目录相关java类接口实现类springmvc中使用1.web.xml配置2.-Dspring.profiles.active3.WebApplicationInitializer@ActiveProfiles注解profile其他配置spring的xml中配置springboot相关java类接口public interface TestService { String test();}实现类TestServiceImpl@Profile("pro")@Servicepu原创 2020-06-02 13:48:31 · 414 阅读 · 0 评论 -
spring jdbctemplate和namedParameterJdbcTemplate
spring中配置1.properties配置jdbc.driverClassName=oracle.jdbc.OracleDriverjdbc.url=jdbc:oracle:thin:@60.205.59.228:1521:oracle11jdbc.username=bxjdbc.password=3r4IUOYw02jSuAXRF6tN5Q==ds.dbcp.maxActive=50ds.dbcp.maxIdle=82.spring中配置这里使用dbcp 1.x <bean原创 2020-05-31 23:11:00 · 188 阅读 · 0 评论 -
spring spel表达式
SpEL表达式总结(转)https://www.cnblogs.com/kerwincui/p/12504745.htmlSpEL表达式总结https://www.jianshu.com/p/e0b50053b5d3SpEL之#和$的区别#{…} 用于执行SpEl表达式,并将内容赋值给属性KaTeX parse error: Expected 'EOF', got '#' at pos...原创 2020-03-24 21:53:40 · 218 阅读 · 0 评论 -
java项目脚手架
一些项目脚手架一、spring-cloud给予spring-boot 1.5.9 pig https://gitee.com/billy2016/pig原创 2019-10-15 16:42:15 · 3455 阅读 · 0 评论 -
spring restTemplate
spring restTemplate 默认工厂SimpleClientHttpRequestFactory 使用 HttpURLConnection.openConnection()public class SimpleClientHttpRequestFactory implements ClientHttpRequestFactory, AsyncClientHttpRequestFa...原创 2019-10-15 12:01:58 · 269 阅读 · 0 评论 -
spring-mvc注解方式加载配置
spring-mvc注解方式加载配置一、web.xml方式1.web.xml配置内容spring使用3.2.4版本如下为配置的web.xml文件<context-param> <param-name>contextClass</param-name> <param-value> org.springframe...原创 2018-12-26 00:40:52 · 1156 阅读 · 1 评论 -
springboot 注入ElasticsearchRepositories
SpringBoot JPA 中无法注入 JpaRepository 接口的问题及解决方案 https://blog.csdn.net/jakemanse/article/details/83271442SpringBoot 无法注入 ElasticsearchRepository目录结构com.xxx.abc--- bootstrap------SomeoneApplication...原创 2019-08-14 10:55:52 · 7675 阅读 · 0 评论
分享