This commit is contained in:
454313500@qq.com
2021-03-21 15:51:49 +08:00
parent 646cd16e40
commit dc4429d66c
8 changed files with 194 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ namespace CC.Yi.API.Controllers
public IActionResult GetTest()//查
{
var data = _studentBll.GetAllEntities().ToList();
return Content(Common.JsonFactory.JsonToString(data));
return Content(Common.JsonHelper.JsonToString(data));
}
[HttpGet]
public IActionResult AddTest()//增

View File

@@ -2,6 +2,7 @@
using Autofac;
using Autofac.Extras.DynamicProxy;
using CC.Yi.BLL;
using CC.Yi.Common.Cache;
using CC.Yi.Common.Castle;
using CC.Yi.DAL;
using CC.Yi.IBLL;
@@ -51,6 +52,11 @@ namespace CC.Yi.API
//<2F><><EFBFBD><EFBFBD>ע<EFBFBD><D7A2>ת<EFBFBD><D7AA><EFBFBD><EFBFBD>Autofac
//services.AddScoped(typeof(IBaseDal<>), typeof(BaseDal<>));
//services.AddScoped(typeof(IstudentBll), typeof(studentBll));
services.AddSingleton(typeof(ICacheWriter), new RedisCacheService(new Microsoft.Extensions.Caching.Redis.RedisCacheOptions()
{
Configuration = Configuration.GetSection("Cache.ConnectionString").Value,
InstanceName = Configuration.GetSection("Cache.InstanceName").Value
}));
}
//<2F><>̬ <20><><EFBFBD><EFBFBD>AOP˼<50><CBBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ע<EFBFBD><D7A2> Autofac
@@ -59,7 +65,6 @@ namespace CC.Yi.API
builder.RegisterType(typeof(CustomAutofacAop));
builder.RegisterGeneric(typeof(BaseDal<>)).As(typeof(IBaseDal<>)) ;
builder.RegisterType<studentBll>().As<IstudentBll>().EnableInterfaceInterceptors();//<2F><>ʾע<CABE><D7A2>ǰ<EFBFBD><C7B0>Ҫִ<D2AA><D6B4>Castle
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.

View File

@@ -7,6 +7,10 @@
}
},
"AllowedHosts": "*",
"Cache": {
"InstanceName": "Redis",
"ConnectionString": "127.0.0.1:12345,password=123456"
},
"ConnectionStringBySQL": "server=.;Database=cctest;UId=sa;PWD=Qz52013142020.",
"ConnectionStringByMySQL": "Data Source=.;Database=cctest;User ID=root;Password=Qz52013142020.;pooling=true;port=3306;sslmode=none;CharSet=utf8;"
}