parent
eeb3c6c5fe
commit
e58f782934
|
|
@ -69,8 +69,11 @@ public class BaseController {
|
|||
}
|
||||
|
||||
@GetMapping("/dashboard")
|
||||
public ModelAndView dashboard(@AuthenticationPrincipal UserInfo loginUser) {
|
||||
public ModelAndView dashboard(@AuthenticationPrincipal UserInfo loginUser, HttpSession session) {
|
||||
ModelAndView mav = new ModelAndView("login/dashboard");
|
||||
|
||||
setSession(loginUser, session);
|
||||
|
||||
PublicBoard noticeParams = new PublicBoard();
|
||||
noticeParams.setPublicType("PLB001");
|
||||
noticeParams.setRowCnt(7);
|
||||
|
|
|
|||
|
|
@ -5,11 +5,11 @@ tomcat.ajp.protocol=HTTP/1.1
|
|||
logging.level.org.apache.tomcat: DEBUG
|
||||
logging.level.org.apache.catalina: DEBUG
|
||||
tomcat.cluster.enabled=true
|
||||
tomcat.cluster.static-member-host=118.219.150.34
|
||||
tomcat.cluster.static-member-port=50542
|
||||
tomcat.cluster.static-member-unique-id={0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1}
|
||||
tomcat.cluster.receiver-address=118.219.150.34
|
||||
tomcat.cluster.receiver-port=50540
|
||||
tomcat.cluster.static-member-host=172.80.0.4
|
||||
tomcat.cluster.static-member-port=4042
|
||||
tomcat.cluster.static-member-unique-id={0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2}
|
||||
tomcat.cluster.receiver-address=172.80.0.3
|
||||
tomcat.cluster.receiver-port=4040
|
||||
tomcat.cluster.receiver-max-threads=4
|
||||
|
||||
#file upload
|
||||
|
|
|
|||
|
|
@ -5,11 +5,11 @@ tomcat.ajp.protocol=HTTP/1.1
|
|||
logging.level.org.apache.tomcat: DEBUG
|
||||
logging.level.org.apache.catalina: DEBUG
|
||||
tomcat.cluster.enabled=true
|
||||
tomcat.cluster.static-member-host=118.219.150.34
|
||||
tomcat.cluster.static-member-port=50540
|
||||
tomcat.cluster.static-member-host=172.80.0.3
|
||||
tomcat.cluster.static-member-port=4040
|
||||
tomcat.cluster.static-member-unique-id={0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1}
|
||||
tomcat.cluster.receiver-address=118.219.150.34
|
||||
tomcat.cluster.receiver-port=50542
|
||||
tomcat.cluster.receiver-address=172.80.0.4
|
||||
tomcat.cluster.receiver-port=4042
|
||||
tomcat.cluster.receiver-max-threads=4
|
||||
|
||||
#file upload
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ $(document).on('click', '.selectTh', function (){
|
|||
|
||||
$(document).on('click', '.radioTd', function (event){
|
||||
const chkbox = $(this).find('input');
|
||||
if(event.target.type !== "checkbox"){
|
||||
if(event.target.type !== "checkbox" && event.target.type !== "radio"){
|
||||
chkbox.prop('checked', !chkbox[0].checked);
|
||||
}
|
||||
apprvChkboxControl(chkbox[0]);
|
||||
|
|
|
|||
Loading…
Reference in New Issue