
java, js 컨버젼> 1. 컴포넌트 시스템 변환 .razor 파일 -> JSP 태그 파일 - JSP include - 파라미터 전달방식 : 객체 생성 후, request. 으로 받음 1. 서버 사이드에서 객체전달 http://m.example.models.User" %> User user = new User("123", "김철수", "chulsoo@example.com"); request.setAttribute("currentUser", user); %> http://java.sun.com/jsp/jstl/core" %> ${currentUser.name} ID: ${currentUser.id} Email: ${currentU..