会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
NapoleonKo
博客园
首页
新随笔
联系
订阅
管理
2019年12月20日
SpringBoot常用注解
摘要: springboot常用注解:@Service: 注解在类上,表示这是一个业务层bean@Controller:注解在类上,表示这是一个控制层bean@Repository: 注解在类上,表示这是一个数据访问层bean@Component: 注解在类上,表示通用bean ,value不写默认就是类名
阅读全文
posted @ 2019-12-20 14:01 NapoleonKo
阅读(215)
评论(0)
推荐(0)
编辑
SpringCloud组件及功能介绍
摘要: 1.什么是SpringClould? SpringCloud是一个基于SpringBoot实现的微服务架构开发工具。它为微服务架构中涉及的配置管理、服务治理、断路器、智能路由、微代理、控制总线、全局锁、决策竞选、分布式会话和集群状态管理等操作提供了一种简单的开发方式。 2.SpringCloud组件
阅读全文
posted @ 2019-12-20 09:42 NapoleonKo
阅读(2720)
评论(0)
推荐(0)
编辑
2019年12月16日
Java实现AES对称加密算法
摘要: Java代码实现 import java.security.SecureRandom; import javax.crypto.Cipher; import javax.crypto.KeyGenerator; import javax.crypto.SecretKey; public class
阅读全文
posted @ 2019-12-16 15:15 NapoleonKo
阅读(1235)
评论(0)
推荐(0)
编辑
2019年8月20日
linux系统redis安装及使用
摘要: 1.下载redishttp://download.redis.io/releases/redis-5.0.5.tar.gz$ wget http://download.redis.io/releases/redis-5.0.5.tar.gz2.解压$ tar zxf redis-5.0.5.tar.
阅读全文
posted @ 2019-08-20 15:28 NapoleonKo
阅读(233)
评论(0)
推荐(0)
编辑
2019年7月26日
gcc命令-更新中....
摘要: 下载安装MinGW 1.编译c 使用gcc xx.c命令,将文件编译为a.exe。或使用gcc xx.c -o xx.exe命令,将文件编译为xx.exe 2.编译c++ 使用g++ xx.cpp命令,将文件编译为a.exe。或使用g++ xx.cpp -o xx.exe命令,将文件编译为xx.ex
阅读全文
posted @ 2019-07-26 10:36 NapoleonKo
阅读(628)
评论(0)
推荐(0)
编辑
常用特殊字符
摘要: ∏ ∪ ∩ ∈ ⊙ ● ○ ① ⊕ ◎ Θ ⊙ ¤ ㊣ ★ ☆ ♀ ◆ ◇ ◣ ◢ ◥ ▲ ▼ △ ▽ ⊿ ◤ ◥ ▂▃▄▅▆▇█ ■ ▓ 回 □ 〓 ≡ ╝ ╚ ╔ ╗ ╬ ═ ╓ ╩ ┐└ ┘ ∟ 「 」∵ ┠ ┨ ┯ ┷ ┏ ┓ ┗ ┛ ┳ ⊥ ﹃ ﹄ ┌ ∧ ∨ ∑ ∏ ∥∠ ≌ ∽ ≦ ≧
阅读全文
posted @ 2019-07-26 10:19 NapoleonKo
阅读(393)
评论(0)
推荐(0)
编辑
2019年3月26日
SpringBoot项目如何打War包
摘要: 首先,需要添加Tomcat启动依赖 其次,需要编写Servlet启动类。 该启动类继承SpringBootServletInitializer,并将启动方式指向APP启动类 该启动类需要与APP启动类位于同级目录中。 第三,编写App启动类 最后,就可以使用Maven将项目打包成War包了。
阅读全文
posted @ 2019-03-26 19:37 NapoleonKo
阅读(267)
评论(0)
推荐(0)
编辑
Thymeleaf中href与 th:href的区别
摘要: 语法格式如下: <a th:href="@{/channel/page/add}">添加渠道 </a> <a href="/channel/page/add">添加渠道 </a> 在默认项目路径为空时,打Jar包单独运行时。二者效果一致。 在使用Maven内嵌Tomcat或打War包部署到Servl
阅读全文
posted @ 2019-03-26 19:21 NapoleonKo
阅读(19738)
评论(1)
推荐(2)
编辑
2018年5月6日
JavaScript中Ajax的用法
摘要: XMLHttpRequest 对象的属性和方法: open(method,url,async) 规定请求的类型、URL 以及是否异步处理请求 send(string) 将请求发送到服务器。 responseText 获得字符串形式的响应数据。 responseXML 获得 XML 形式的响应数据。
阅读全文
posted @ 2018-05-06 21:40 NapoleonKo
阅读(388)
评论(0)
推荐(0)
编辑
2018年4月19日
maven源码打包
摘要: 1.打包时附加外部Jar包 <!--编译+外部 Jar打包--> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>1.7</source>
阅读全文
posted @ 2018-04-19 19:33 NapoleonKo
阅读(1162)
评论(0)
推荐(0)
编辑
下一页
公告