728x90
반응형

// Connection Timeout 10초, ReadTimeout 10초 설정.

private RestTemplate getRestTemplate() {
HttpComponentsClientHttpRequestFactory factory 

= new HttpComponentsClientHttpRequestFactory();
factory.setConnectTimeout(10*1000);
factory.setReadTimeout(10*1000);
RestTemplate restTemplate = new RestTemplate(factory);
return restTemplate;
}


728x90
반응형

'Web Programming > spring' 카테고리의 다른 글

Failed to determine a suitable driver class  (0) 2020.06.29
Spring RestTemplate Get 요청  (0) 2018.09.05
@ResponseBody @RestController  (0) 2018.09.04
No mapping found for HTTP request with URI  (0) 2018.09.04
BeanCreationException  (0) 2018.09.04
728x90
반응형
PHP file_get_contents()
  • 전체파일을 문자열로 읽어들이는 PHP 함수
  • 로컬파일, 원격파일 모두 가능
$str = file_get_contents('test.txt');
echo $str;
# John Smith
$str = file_get_contents('http://zetawiki.com/ex/txt/utf8hello.txt');
echo $str;
# Hi.
# 안녕.
# おはよう。


728x90
반응형

'Web Programming > php' 카테고리의 다른 글

php $_GET $_POST  (0) 2018.09.05
php new line to br nl2br()  (0) 2018.09.05
PHP 문자열 길이 (strlen, mb_strlen 함수)  (0) 2018.09.04
php data types  (0) 2018.09.04
php include, require  (0) 2018.09.03
728x90
반응형
http://www.example.com/index.html?name=john&email=john@gmail.com&contact=9877989898

Client Side: Below code is an HTML form with method=”get” for user to fill information.


<form action="#" method="get">
<input type="text" name="name" placeholder="Your Name"></input><br/>
<input type="text" name="email" placeholder="Your Email"></input><br/>
<input type="text" name="contact" placeholder="Your Mobile"></input><br/>
<input type="submit" name="submit" value="Submit"></input>
</form>

Server Side: Below code has PHP script where, $_GET associative array is used to receive sent information at server end.


<?php
if( $_GET["name"] || $_GET["email"] || $_GET["contact"])
{
echo "Welcome: ". $_GET['name']. "<br />";
echo "Your Email is: ". $_GET["email"]. "<br />";
echo "Your Mobile No. is: ". $_GET["contact"];
}
?>


Client Side: Below code is an  HTML form with method=”post” for user to fill information.


<form action="#" method="post">
....
</form>

Server Side: Below code has PHP script where, $_POST associative array  is used to receive sent information at server end.


<?php
if( $_POST["name"] || $_POST["email"] || $_POST["contact"])
{
echo "Welcome: ". $_POST['name']. "<br />";
echo "Your Email is: ". $_POST["email"]. "<br />";
echo "Your Mobile No. is: ". $_POST["contact"];
}
?>

Query string , generated by Post  method never appears in address bar i.e. it is hidden for the user therefore, we can use this method for sending sensitive information to server. Moreover, we can make use of this method to send binary data to the server without any restrictions to data size.

 

In our example, we allow user to choose a method via radio button and this value is assigned to form’s method attribute.


$("input[type=radio]").change(function(){
var method = $(this).val();
$("#form").attr("method", method);   // Assigns Method Type From Radio Button
});


728x90
반응형

'Web Programming > php' 카테고리의 다른 글

php file_get_contents()  (0) 2018.09.05
php new line to br nl2br()  (0) 2018.09.05
PHP 문자열 길이 (strlen, mb_strlen 함수)  (0) 2018.09.04
php data types  (0) 2018.09.04
php include, require  (0) 2018.09.03
728x90
반응형

월급으로는 먹고 살기 힘든 세일즈맨들의 가슴아픈 현실.. 손쉬운 투잡으로 돈버는 법 공유 해드립니다.


핸드폰 판매인데요. 친구, 가족, 친척, 이웃, 직장동료 등등 에게 핸드폰 판매하는 일입니다.


본인이 핸드폰 대리점 사장님이 하는 일을 하는 건데요. 네오앱 어플로요~!


핸드폰 판매시 대리점/판매점 에게 지급하는 리베이트를 본인이 다 가져갈수 있는 수익 구조고요,


핸드폰 팔때 그점 고려해서 판매자에게 ㅍㅇㅂ(페이백) 에누리 쳐줄수도 있고요. 상부상조 입니다~!


대학생들도 알바로 많이 하고 있습니다~ 밑져야 본전이니 일단 가입해 두시고 본인 핸드폰 구매시 활용하셔도 일석이조!


안드로이드 마켓 'neo' 무료 app 설치 후 가입시 코드번호 'aca460' 입력하시면 됩니다. 


아이폰 사용자 분들은 주소창에 neoapp.kr 입력후 가입하면 됩니다.


가입 후 아래 번호로 가입했다고 문자 한통 주시면 어플 사용 승인 해 드립니다. 


승인 후 어플 안에 사용방법 영상 보시고 활용하시면 됩니다.


010 - 9174 - 0002



좀더 자세한 app 사용 메뉴얼은 아래 링크

http://js2prince.tistory.com/entry/%EB%84%A4%EC%98%A4-App-%EC%82%AC%EC%9A%A9%EB%B2%95?category=565950

728x90
반응형

'끄적끄적..' 카테고리의 다른 글

컴퓨터 부팅 속도 향상  (0) 2018.09.06
하드디스크 파티션 나누기  (0) 2018.09.06
네오 App 사용법  (0) 2018.09.04
구글 검색 원리  (0) 2018.09.04
스마트폰 배터리를 오래 사용하는 방법  (0) 2018.09.04
728x90
반응형

Example

Insert line breaks where newlines (\n) occur in the string:

<?php
echo nl2br("One line.\nAnother line.");
?>

The browser output of the code above will be:

One line.
Another line.

The HTML output of the code above will be (View Source):

One line.<br />
Another line.


728x90
반응형

'Web Programming > php' 카테고리의 다른 글

php file_get_contents()  (0) 2018.09.05
php $_GET $_POST  (0) 2018.09.05
PHP 문자열 길이 (strlen, mb_strlen 함수)  (0) 2018.09.04
php data types  (0) 2018.09.04
php include, require  (0) 2018.09.03

+ Recent posts