03 2021 档案
摘要:这几天在用Vue3写点小项目遇到了一些坑! 路由的404方式变了 只顾着看vue3核心文档,写404的时候发现原来的 * 的配置方法在vue3里面已经不适用了。官方文档建议使用如下: { path: '/404', name: '404', component: () => import('../v
阅读全文
摘要:排除Tomcat <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>o
阅读全文
摘要:SSM开发手册 maven依赖 <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>javax.servlet.jsp-api</artifactId> <version>2.3.3</version> <scope>provi
阅读全文
摘要:<iframe width="250" scrolling="no" height="60" frameborder="0" allowtransparency="true" src="http://i.tianqi.com/index.php?c=code&id=12&icon=1
阅读全文
摘要:Nginx学习 静态资源服务器 server { listen 80; server_name localhost; location / { root html; index index.html index.htm; } } listen: 监听的端口号。 server_name: 域名。 lo
阅读全文