{"msg":"Could not marshal [ResultVo [code=100, result=null, message=ok, exception=null, data=null]]: null; nested exception is javax.xml.bind.MarshalException\n - with linked exception:\n[com.sun.istack.SAXException2: unable to marshal type \"com.domain.ResultVo\" as an element because it is missing an @XmlRootElement annotation]","errorcode":2}
分类:
其他好文 时间:
2020-07-20 11:05:43
阅读次数:
87
MVC介绍 MVC的解释千千万,唯一统一的认识就是MCV分别指model、view、controller,至于其它的咱也不知道对错。 MVC是把业务按照M、V、C的功能进行解耦: Model用来管理业务逻辑相关的数据以及对数据的处理方法 View=render(data)用来展示Model里数据的当 ...
分类:
Web程序 时间:
2020-07-20 10:52:45
阅读次数:
76
在.Net Core 2.2 版本中使用 Area, 发现配置第一个(Admin) MapAreaRoute 路由可以匹配多个 {Controller}/{Action} 路由设置 app.UseMvc(routes => { //routes.MapRoute( // name: "areas", ...
分类:
Web程序 时间:
2020-07-20 10:16:19
阅读次数:
93
例如 //类 public class User1 { public int id { get; set; } public string name { get; set; } } //方法 [HttpPost, Route("api/OrderPayJs/Notify0")] public str ...
分类:
Web程序 时间:
2020-07-19 00:53:10
阅读次数:
134
参考 优秀程序员的代码都是如何分层的? 1、背景 2、如何进行分层 3、分层领域模型的转换 4、总结 领域模型转换那些事儿 1、背景 说起应用分层,大部分人都会认为这个不是很简单嘛 就controller,service, mapper三层。看起来简单,很多人其实并没有把他们职责划分开,在很多代码中 ...
分类:
其他好文 时间:
2020-07-18 22:45:12
阅读次数:
90
场景: 在开发web项目的时候,写一些通用的公共方法是很常见的操作,而一些关于Http的操作,经常会用到HttpContext这个对象。 若是在Controller里,我们操作就很简单,可以使用注入的方法直接使用:,比如以下代码: public class HomeController : Cont ...
分类:
Web程序 时间:
2020-07-18 22:26:34
阅读次数:
118
1.Test.php <?php namespace app\sample\controller; class Test { public function hello($id,$name){ echo $id; echo '|'; echo $name."<br>"; return 'hello, ...
分类:
Web程序 时间:
2020-07-18 19:52:59
阅读次数:
76
ASP.NET MVC允许使用 Area(区域)来组织Web应用程序,每个Area代表应用程序的不同功能模块。这对于大的工程非常有用,Area 使每个功能模块都有各自的文件夹,文件夹中有自己的Controller、View和Model,但对于管理也增加了一定的难度。 本文目录 创建Area 右键工程 ...
分类:
其他好文 时间:
2020-07-18 00:56:27
阅读次数:
88
部署kube-dns https://console.cloud.google.com/gcr/images/google-containers/GLOBAL #kube-dns镜像下载地址 kube-dns简介 kube-dns 的 pod 中包含了 3 个容器,分别是: 1、kube-dns:提 ...
分类:
其他好文 时间:
2020-07-17 16:11:24
阅读次数:
55
参考: HP LoadRunner Controller https://www.guru99.com/how-to-use-controller-in-loadrunner.html HP LoadRunner Analysis https://www.guru99.com/how-to-use- ...
分类:
其他好文 时间:
2020-07-17 16:04:37
阅读次数:
73